Skip to content

Commit

Permalink
Upgrade to TileDB 2.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gspowley committed Sep 10, 2024
1 parent ade7a50 commit 0a133d8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions libtiledbvcf/cmake/Modules/FindTileDB_EP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,20 @@ else()
# Try to download prebuilt artifacts unless the user specifies to build from source
if(DOWNLOAD_TILEDB_PREBUILT)
if (WIN32) # Windows
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.25.0/tiledb-windows-x86_64-2.25.0-bbcbd3f.zip")
SET(DOWNLOAD_SHA1 "b2b8cdfefbcbb07296c86e52cb9a2979ef455d2a")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.0-rc4/tiledb-windows-x86_64-2.26.0-rc4-9683584.zip")
SET(DOWNLOAD_SHA1 "f4ed35792ad55027394599388a55ead01c901c95")
elseif(APPLE) # OSX

if (CMAKE_OSX_ARCHITECTURES STREQUAL x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.25.0/tiledb-macos-x86_64-2.25.0-bbcbd3f.tar.gz")
SET(DOWNLOAD_SHA1 "9c799d7de64e78d9e95cfa7db95b569cd3d3c8b0")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.0-rc4/tiledb-macos-x86_64-2.26.0-rc4-9683584.tar.gz")
SET(DOWNLOAD_SHA1 "5e36bc061b6f356681bdb1bd5c9e534269331a8a")
elseif (CMAKE_OSX_ARCHITECTURES STREQUAL arm64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.25.0/tiledb-macos-arm64-2.25.0-bbcbd3f.tar.gz")
SET(DOWNLOAD_SHA1 "c6a1ab5213c36e53dd8e6da87c18b8bc695c532d")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.0-rc4/tiledb-macos-arm64-2.26.0-rc4-9683584.tar.gz")
SET(DOWNLOAD_SHA1 "e0ad460feb457d93933715b4d0c8f4ee0ebe9e49")
endif()
else() # Linux
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.25.0/tiledb-linux-x86_64-2.25.0-bbcbd3f.tar.gz")
SET(DOWNLOAD_SHA1 "1d789af5d88ce09edf60d16ea3988631e780252a")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.26.0-rc4/tiledb-linux-x86_64-2.26.0-rc4-9683584.tar.gz")
SET(DOWNLOAD_SHA1 "e0c55739d43b169d70b4b1a1865a007fb1792c34")
endif()

ExternalProject_Add(ep_tiledb
Expand All @@ -87,8 +87,8 @@ else()
else() # Build from source
ExternalProject_Add(ep_tiledb
PREFIX "externals"
URL "https://github.com/TileDB-Inc/TileDB/archive/2.25.0.zip"
URL_HASH SHA1=35418d02cefe2721e3e3b6a3d52505359f4b3e21
URL "https://github.com/TileDB-Inc/TileDB/archive/2.26.0-rc4.zip"
URL_HASH SHA1=6033821041e8fdd979da61bf93575c1d7e723bef
DOWNLOAD_NAME "tiledb.zip"
CMAKE_ARGS
-DCMAKE_INSTALL_PREFIX=${EP_INSTALL_PREFIX}
Expand Down

0 comments on commit 0a133d8

Please sign in to comment.