Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test against TileDB 2.17.0-rc0
Browse files Browse the repository at this point in the history
Spyros Anastasopoulos committed Sep 8, 2023
1 parent 761df5c commit be8f565
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/install_tiledb_linux.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion .github/scripts/install_tiledb_linux_debug.sh
Original file line number Diff line number Diff line change
@@ -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 ..
2 changes: 1 addition & 1 deletion .github/scripts/install_tiledb_macos.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion .github/scripts/install_tiledb_source_linux.sh
Original file line number Diff line number Diff line change
@@ -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 ..
2 changes: 1 addition & 1 deletion .github/scripts/install_tiledb_source_macos.sh
Original file line number Diff line number Diff line change
@@ -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 ..

0 comments on commit be8f565

Please sign in to comment.