Skip to content

Update to TileDB 2.26.1. #372

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group 'io.tiledb'
version '0.28.0-SNAPSHOT'
version '0.28.1-SNAPSHOT'

repositories {
mavenCentral()
Expand Down
22 changes: 11 additions & 11 deletions cmake/Modules/FindTileDB_EP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -48,37 +48,37 @@ if (NOT TILEDB_FOUND)
# 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.26.0/tiledb-windows-x86_64-2.26.0-983b716.zip")
SET(DOWNLOAD_SHA1 "ee66c3f86d32aa1c88e233c25455141d764eff47")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-windows-x86_64-2.26.1-db1cee4.zip")
SET(DOWNLOAD_SHA256 "c82f6175db770451358ef0a918c2e4921875de2e48c721aa02e729562c79ad2d")
elseif(APPLE) # macOS

if (CMAKE_OSX_ARCHITECTURES STREQUAL x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)")
message(STATUS "Building for intel mac")

SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.0/tiledb-macos-x86_64-2.26.0-983b716.tar.gz")
SET(DOWNLOAD_SHA1 "e218ef0c5c6bc7ce55e423f6ad63ca8dd0b7719e")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-macos-x86_64-2.26.1-db1cee4.tar.gz")
SET(DOWNLOAD_SHA256 "6a7a4017cdc5eb0a9adcc0cb1c8c1322ce2d166c684bf18c8a6f4c1aceb3cb74")

elseif (CMAKE_OSX_ARCHITECTURES STREQUAL arm64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
message(STATUS "Building for apple silicon mac")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.0/tiledb-macos-arm64-2.26.0-983b716.tar.gz")
SET(DOWNLOAD_SHA1 "9372924a4e8945bdfddb5c9b1741233aa8ff504e")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-macos-arm64-2.26.1-db1cee4.tar.gz")
SET(DOWNLOAD_SHA256 "9aa78d2cfb5d97f07969641c79500a386a14a9def375fe2d64ba150440466963")
endif()
else() # Linux
if (USE_AVX2)
message(STATUS "Using Linux binaries with AVX2")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.0/tiledb-linux-x86_64-2.26.0-983b716.tar.gz")
SET(DOWNLOAD_SHA1 "b2abfc91285653050a4cb743a71d7c2f2f9a89c4")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-linux-x86_64-2.26.1-db1cee4.tar.gz")
SET(DOWNLOAD_SHA256 "139dc1da9b3c74f72bf1b12cc215023582715c2effeab12fdbf7e367fdff7297")
else()
message(STATUS "Using Linux binaries without AVX2")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.0/tiledb-linux-x86_64-noavx2-2.26.0-983b716.tar.gz")
SET(DOWNLOAD_SHA1 "337da10f222afe3727166d92de66e480304179bb")
SET(DOWNLOAD_URL "https://github.com./TileDB-Inc/TileDB/releases/download/2.26.1/tiledb-linux-x86_64-noavx2-2.26.1-db1cee4.tar.gz")
SET(DOWNLOAD_SHA256 "f6e4fff4d4295157912bd5bdd2a241942adf086c4c818785fce4a17394d8aa7c")
endif()
endif()

ExternalProject_Add(ep_tiledb
PREFIX "externals"
URL ${DOWNLOAD_URL}
URL_HASH SHA1=${DOWNLOAD_SHA1}
URL_HASH SHA256=${DOWNLOAD_SHA256}
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
UPDATE_COMMAND ""
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TILEDB_GIT_REPOSITORY=https://github.com./TileDB-Inc/TileDB
TILEDB_GIT_TAG=2.26.0
TILEDB_GIT_TAG=2.26.1
TILEDB_VERBOSE=ON
TILEDB_S3=ON
TILEDB_AZURE=OFF
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/tiledb/java/api/VersionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public void testVersion() {
System.out.println(version);
Assert.assertTrue(version.getMajor() == 2);
Assert.assertTrue(version.getMinor() == 26);
Assert.assertTrue(version.getRevision() == 0);
Assert.assertTrue(version.getRevision() == 1);
}
}
Loading