From be8f56586bbbd1479bc97d8ef192e56455553e0a Mon Sep 17 00:00:00 2001 From: Spyros Anastasopoulos Date: Fri, 8 Sep 2023 14:11:19 +0300 Subject: [PATCH] Test against TileDB 2.17.0-rc0 --- .github/scripts/install_tiledb_linux.sh | 2 +- .github/scripts/install_tiledb_linux_debug.sh | 2 +- .github/scripts/install_tiledb_macos.sh | 2 +- .github/scripts/install_tiledb_source_linux.sh | 2 +- .github/scripts/install_tiledb_source_macos.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/scripts/install_tiledb_linux.sh b/.github/scripts/install_tiledb_linux.sh index 8db229da..d4e209d3 100755 --- a/.github/scripts/install_tiledb_linux.sh +++ b/.github/scripts/install_tiledb_linux.sh @@ -1,4 +1,4 @@ set -e -x -curl --location -o tiledb.tar.gz https://github.com/TileDB-Inc/TileDB/releases/download/2.16.0/tiledb-linux-x86_64-2.16.0-d682dd0.tar.gz \ +curl --location -o tiledb.tar.gz https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0-rc0/tiledb-linux-x86_64-2.17.0-rc0-46b9ca5.tar.gz \ && sudo tar -C /usr/local -xf tiledb.tar.gz sudo ldconfig /usr/local/lib diff --git a/.github/scripts/install_tiledb_linux_debug.sh b/.github/scripts/install_tiledb_linux_debug.sh index 98d75ec4..35de0a20 100755 --- a/.github/scripts/install_tiledb_linux_debug.sh +++ b/.github/scripts/install_tiledb_linux_debug.sh @@ -1,5 +1,5 @@ set -e -x -git clone https://github.com/TileDB-Inc/TileDB.git -b 2.16.0 +git clone https://github.com/TileDB-Inc/TileDB.git -b 2.17.0-rc0 cd TileDB mkdir build && cd build cmake -DTILEDB_WERROR=OFF -DTILEDB_VCPKG=ON -DSANITIZER=leak -DTILEDB_VERBOSE=OFF -DTILEDB_S3=ON -DTILEDB_SERIALIZATION=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr/local .. diff --git a/.github/scripts/install_tiledb_macos.sh b/.github/scripts/install_tiledb_macos.sh index efc9a58f..e3561c37 100755 --- a/.github/scripts/install_tiledb_macos.sh +++ b/.github/scripts/install_tiledb_macos.sh @@ -1,3 +1,3 @@ set -e -x -curl --location -o tiledb.tar.gz https://github.com/TileDB-Inc/TileDB/releases/download/2.16.0/tiledb-macos-x86_64-2.16.0-d682dd0.tar.gz \ +curl --location -o tiledb.tar.gz https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0-rc0/tiledb-macos-x86_64-2.17.0-rc0-46b9ca5.tar.gz \ && sudo tar -C /usr/local -xf tiledb.tar.gz diff --git a/.github/scripts/install_tiledb_source_linux.sh b/.github/scripts/install_tiledb_source_linux.sh index 7ed27b5c..7a239718 100755 --- a/.github/scripts/install_tiledb_source_linux.sh +++ b/.github/scripts/install_tiledb_source_linux.sh @@ -1,5 +1,5 @@ set -e -x -git clone https://github.com/TileDB-Inc/TileDB.git -b 2.16.0 +git clone https://github.com/TileDB-Inc/TileDB.git -b 2.17.0-rc0 cd TileDB mkdir build && cd build cmake -DTILEDB_WERROR=OFF -DTILEDB_VCPKG=ON -DTILEDB_VERBOSE=OFF -DTILEDB_S3=ON -DTILEDB_SERIALIZATION=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local .. diff --git a/.github/scripts/install_tiledb_source_macos.sh b/.github/scripts/install_tiledb_source_macos.sh index 6acbf2dd..a6db7845 100755 --- a/.github/scripts/install_tiledb_source_macos.sh +++ b/.github/scripts/install_tiledb_source_macos.sh @@ -1,5 +1,5 @@ set -e -x -git clone https://github.com/TileDB-Inc/TileDB.git -b 2.16.0 +git clone https://github.com/TileDB-Inc/TileDB.git -b 2.17.0-rc0 cd TileDB mkdir build && cd build cmake -DTILEDB_WERROR=OFF -DTILEDB_VCPKG=ON -DTILEDB_VERBOSE=OFF -DTILEDB_S3=ON -DTILEDB_SERIALIZATION=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..