Skip to content

Commit 187c831

Browse files
authored
Merge pull request #142 from TileDB-Inc/ss/tiledb-2.17
Update to TileDB 2.17
2 parents ede1206 + 6f3e006 commit 187c831

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN conda config --prepend channels conda-forge
88
# Install mamba for faster installations
99
RUN conda install mamba
1010

11-
RUN mamba install -y -c tiledb 'tiledb>=2.16,<2.17' tiledb-py cmake pybind11 pytest c-compiler cxx-compiler ninja openblas-devel "pip>22"
11+
RUN mamba install -y -c tiledb 'tiledb>=2.17,<2.18' tiledb-py cmake pybind11 pytest c-compiler cxx-compiler ninja openblas-devel "pip>22"
1212

1313
COPY . TileDB-Vector-Search/
1414

src/cmake/Modules/FindTileDB_EP.cmake

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ else()
5252
# Try to download prebuilt artifacts unless the user specifies to build from source
5353
if(DOWNLOAD_TILEDB_PREBUILT)
5454
if (WIN32) # Windows
55-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.16.3/tiledb-windows-x86_64-2.16.3-194b5ae.zip")
56-
SET(DOWNLOAD_SHA1 "8e986b6143ef9509201c7f2b3c0a7a53ff41095a")
55+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0/tiledb-windows-x86_64-2.17.0-93c173d.zip")
56+
SET(DOWNLOAD_SHA1 "d43589b22de95d45b40de9918d105a6174ec352e")
5757
elseif(APPLE) # OSX
5858
if (DEFINED CMAKE_OSX_ARCHITECTURES)
5959
set(ACTUAL_TARGET ${CMAKE_OSX_ARCHITECTURES})
@@ -63,15 +63,15 @@ else()
6363

6464

6565
if (ACTUAL_TARGET MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)")
66-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.16.3/tiledb-macos-x86_64-2.16.3-194b5ae.tar.gz")
67-
SET(DOWNLOAD_SHA1 "b4d35306771d1c30b49bf2a98651e8e24c91037e")
66+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0/tiledb-macos-x86_64-2.17.0-93c173d.tar.gz")
67+
SET(DOWNLOAD_SHA1 "9a232015cbf09c5bd37375537cef80a382e1ffa4")
6868
elseif (ACTUAL_TARGET STREQUAL arm64 OR ACTUAL_TARGET MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
69-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.16.3/tiledb-macos-arm64-2.16.3-194b5ae.tar.gz")
70-
SET(DOWNLOAD_SHA1 "1f3f0e7660ed54b8988bdfcc4876021bf57d58da")
69+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0/tiledb-macos-arm64-2.17.0-93c173d.tar.gz")
70+
SET(DOWNLOAD_SHA1 "b861b90b462963db44fe0217087fac3510fd6293")
7171
endif()
7272
else() # Linux
73-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.16.3/tiledb-linux-x86_64-2.16.3-194b5ae.tar.gz")
74-
SET(DOWNLOAD_SHA1 "6ccafbee52137478d0b8146e71a11323755c9ed5")
73+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0/tiledb-linux-x86_64-2.17.0-93c173d.tar.gz")
74+
SET(DOWNLOAD_SHA1 "5c04c07a73d3fe48a9ba8f3ad8af5e1912a39ce8")
7575
endif()
7676

7777
ExternalProject_Add(ep_tiledb
@@ -93,8 +93,8 @@ else()
9393
else() # Build from source
9494
ExternalProject_Add(ep_tiledb
9595
PREFIX "externals"
96-
URL "https://github.com/TileDB-Inc/TileDB/archive/2.16.3.zip"
97-
URL_HASH SHA1=22724f1ede59fee7c88b800242e9813eab785dcb
96+
URL "https://github.com/TileDB-Inc/TileDB/archive/2.17.0.zip"
97+
URL_HASH SHA1=bbf5b34fec1c729f048f48bf1a0f03abb447d7de
9898
DOWNLOAD_NAME "tiledb.zip"
9999
CMAKE_ARGS
100100
-DCMAKE_INSTALL_PREFIX=${EP_INSTALL_PREFIX}

0 commit comments

Comments
 (0)