diff options
| author | rejbasket <39080670+rejbasket@users.noreply.github.com> | 2025-04-13 11:59:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-13 11:59:54 +0200 |
| commit | 9557b3f7654210b9bc1e04574bbd3cd9c34c1247 (patch) | |
| tree | 5b78ddd5af69bf8e8cb8931e064d62c5700a77a4 /bin/build-linux | |
| parent | 391950f2db5fceaa4d6627e4958aeb4f81c9fde6 (diff) | |
Update update build process (#3652)
* removed linux new build, linux old is now linux64
* removed win32 build
* use geos source build only for linux32
* set python version to 3.11 for all builds
* sign only releases for windows
Diffstat (limited to 'bin/build-linux')
| -rwxr-xr-x | bin/build-linux | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/bin/build-linux b/bin/build-linux index c7014658..194d0db4 100755 --- a/bin/build-linux +++ b/bin/build-linux @@ -4,11 +4,11 @@ set -e mkdir $HOME/geos-build GEOS_PATH=$HOME/geos-build # Downloading geos -curl -L -O https://github.com/libgeos/geos/releases/download/3.12.2/geos-3.12.2.tar.bz2 +curl -L -O https://github.com/libgeos/geos/releases/download/3.13.1/geos-3.13.1.tar.bz2 # uzipping geos into the geos directory mkdir -p geos && cd geos -tar -xf ../geos-3.12.2.tar.bz2 --strip-components=1 +tar -xf ../geos-3.13.1.tar.bz2 --strip-components=1 # Building geos mkdir -p build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=$GEOS_PATH -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF .. make && make install @@ -27,6 +27,10 @@ if [ ! -z "$CI" ]; then fi cd ../.. -python -m pip uninstall -y shapely -python -m pip cache remove shapely -python -m pip install -v shapely --no-binary shapely +# disabled for linux32 build to run virtualenv properly +#python -m pip uninstall -y shapely +#python -m pip cache remove shapely +#python -m pip install -v shapely --no-binary shapely +#virtualenv/bin/pip uninstall -y shapely +#virtualenv/bin/pip cache remove shapely +#virtualenv/bin/pip install -v shapely |
