Skip to content

Commit 2d2aa60

Browse files
committed
CI/RLS: upgrade to libspatialindex-2.0.0
1 parent 6248b6f commit 2d2aa60

File tree

4 files changed

+5
-245
lines changed

4 files changed

+5
-245
lines changed

Diff for: .github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
matrix:
3131
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
3232
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
33-
sidx-version: ['1.8.5', '1.9.3']
33+
# test oldesst and newest libspatialindex versions
34+
sidx-version: ['1.8.5', '2.0.0']
3435
exclude:
3536
- os: 'macos-latest'
3637
- sidx-version: '1.8.5'

Diff for: ci/CMakeLists.txt

-237
This file was deleted.

Diff for: ci/install_libspatialindex.bash

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
set -xe
33

44
# A simple script to install libspatialindex from a Github Release
5-
VERSION=1.9.3
6-
SHA256=63a03bfb26aa65cf0159f925f6c3491b6ef79bc0e3db5a631d96772d6541187e
5+
VERSION=2.0.0
6+
SHA256=8caa4564c4592824acbf63a2b883aa2d07e75ccd7e9bf64321c455388a560579
77

88
# where to copy resulting files
99
# this has to be run before `cd`-ing anywhere
@@ -53,8 +53,6 @@ cd libspatialindex-${VERSION}
5353
mkdir build
5454
cd build
5555

56-
cp "${SL}/CMakeLists.txt" ..
57-
5856
printenv
5957

6058
if [ "$(uname)" == "Darwin" ]; then

Diff for: ci/install_libspatialindex.bat

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
python -c "import sys; print(sys.version)"
22

3-
set SIDX_VERSION=1.9.3
3+
set SIDX_VERSION=2.0.0
44

55
curl -OL "https://github.com/libspatialindex/libspatialindex/archive/%SIDX_VERSION%.zip"
66

77
tar xvf "%SIDX_VERSION%.zip"
88

9-
REM unzip 1.9.3.zip
10-
REM copy %~dp0\CMakeLists.txt libspatialindex-1.9.3\CMakeLists.txt
119
cd libspatialindex-%SIDX_VERSION%
1210

1311
mkdir build

0 commit comments

Comments
 (0)