scylladb / scylla-cqlsh

A fork of the cqlsh code
Apache License 2.0
16 stars 30 forks source link

reloc/build_reloc.sh: don't use `--no-build-isolation` #86

Closed fruch closed 4 months ago

fruch commented 4 months ago

for downloading the source packages dependecies, we use the pip download command

and we uses --no-build-isolation which mean it doesn't download it's own set of versions, with using using --no-binary :all: to download the source packages

but that's affect also the build dependency which would make it extremely slow, compile cython from source.

so first pin the cython in the build dependecies, and force the command download cython always as wheel to avoid building it from source

Fixes: #78

fruch commented 4 months ago

@tchaikov if you can take this to a ride, to see it solve the issue

this repo CI, doesn't cover the packaging part that is used only by scylla-core