Skip to content

Commit

Permalink
TileDB-VCF 0.26.6 (#624)
Browse files Browse the repository at this point in the history
* TileDB 2.17.5

* Java/Spark 0.26.6
  • Loading branch information
awenocur authored Nov 28, 2023
1 parent 90e9047 commit d47c323
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion apis/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'io.tiledb'
version '0.26.5'
version '0.26.6'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion apis/spark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'io.tiledb'
version '0.26.5'
version '0.26.6'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion apis/spark3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'io.tiledb'
version '0.26.5'
version '0.26.6'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
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.17.4/tiledb-windows-x86_64-2.17.4-a1f648e.zip")
SET(DOWNLOAD_SHA1 "d82a090d231e5cebd10205af8b80884e934b9e9f")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.5/tiledb-windows-x86_64-2.17.5-da891cf.zip")
SET(DOWNLOAD_SHA1 "c01b4c8cb9c9e1ac4b9afe828b0d954e1e566a79")
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.17.4/tiledb-macos-x86_64-2.17.4-a1f648e.tar.gz")
SET(DOWNLOAD_SHA1 "9e3807e1b63b21849a374c6d9c9f161b46a9cc5a")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.5/tiledb-macos-x86_64-2.17.5-da891cf.tar.gz")
SET(DOWNLOAD_SHA1 "05c34a36d33fd756efd96f6ce8ecb561dfda3085")
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.17.4/tiledb-macos-arm64-2.17.4-a1f648e.tar.gz")
SET(DOWNLOAD_SHA1 "e6ec0634f665943ff9879041ab122bdaa96349df")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.5/tiledb-macos-arm64-2.17.5-da891cf.tar.gz")
SET(DOWNLOAD_SHA1 "9e856ebbd009987d62cba93c7d6d879778772873")
endif()
else() # Linux
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.4/tiledb-linux-x86_64-2.17.4-a1f648e.tar.gz")
SET(DOWNLOAD_SHA1 "7849cbbf19f5f9252e4be5350328754b01938aaa")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.5/tiledb-linux-x86_64-2.17.5-da891cf.tar.gz")
SET(DOWNLOAD_SHA1 "a2acf00e6e6a213404d078db98a0e5e5145f9d93")
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.17.4.zip"
URL_HASH SHA1=a6a848cd3d3f19ed1dd6057e3f05fb7b54740016
URL "https://github.com/TileDB-Inc/TileDB/archive/2.17.5.zip"
URL_HASH SHA1=3e4f31353c8aa2c729f1f89d88b14023af450c94
DOWNLOAD_NAME "tiledb.zip"
CMAKE_ARGS
-DCMAKE_INSTALL_PREFIX=${EP_INSTALL_PREFIX}
Expand Down

0 comments on commit d47c323

Please sign in to comment.