From 009ba25367faf9b7c8fb3eb74a75fdeb613421c2 Mon Sep 17 00:00:00 2001 From: Andreas Ntalakas Date: Mon, 29 Nov 2021 18:47:26 +0200 Subject: [PATCH] updates to TileDB 2.5.2 --- .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 c2a411e3..170a2ec0 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.5.1/tiledb-linux-x86_64-2.5.1-5b65a96.tar.gz \ +curl --location -o tiledb.tar.gz https://github.com/TileDB-Inc/TileDB/releases/download/2.5.2/tiledb-linux-x86_64-2.5.2-f9c058f.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 e28aa0b3..dc7e541f 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.5.1 +git clone https://github.com/TileDB-Inc/TileDB.git -b 2.5.2 cd TileDB mkdir build && cd build cmake -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 4408070a..e7d9ac54 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.5.1/tiledb-macos-x86_64-2.5.1-5b65a96.tar.gz \ +curl --location -o tiledb.tar.gz https://github.com/TileDB-Inc/TileDB/releases/download/2.5.2/tiledb-macos-x86_64-2.5.2-f9c058f.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 656acbf5..20dfdcbd 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.5.1 +git clone https://github.com/TileDB-Inc/TileDB.git -b 2.5.2 cd TileDB mkdir build && cd build cmake -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 e45d12ab..dd58fda4 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.5.1 +git clone https://github.com/TileDB-Inc/TileDB.git -b 2.5.2 cd TileDB mkdir build && cd build cmake -DTILEDB_VERBOSE=OFF -DTILEDB_S3=ON -DTILEDB_SERIALIZATION=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..