Skip to content

Commit

Permalink
update to TileDB-2.19.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisStaratzis committed Dec 15, 2023
1 parent c80d2e6 commit d9d48f5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions cmake/Modules/FindTileDB_EP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -48,29 +48,29 @@ 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.18.2/tiledb-windows-x86_64-2.18.2-9ae6e1a.zip")
SET(DOWNLOAD_SHA1 "c440403fde701e5014a7ffa046d38bb49b141e55")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.19.0-rc1/tiledb-windows-x86_64-2.19.0-rc1-fa30a88a.zip")
SET(DOWNLOAD_SHA1 "3e97565b48d60e7db4ed5c28c41ecfd4b6a009e2")
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.18.2/tiledb-macos-x86_64-2.18.2-9ae6e1a.tar.gz")
SET(DOWNLOAD_SHA1 "6ba986407b2d0e25fb5df19d08ed22fefeac1c2a")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.19.0-rc1/tiledb-macos-x86_64-2.19.0-rc1-fa30a88a.tar.gz")
SET(DOWNLOAD_SHA1 "f4222129912a6ac4f531293d74d39e8ce14c9d3d")

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.18.2/tiledb-macos-arm64-2.18.2-9ae6e1a.tar.gz")
SET(DOWNLOAD_SHA1 "4395a283db57844a944f02dab5bd0f0001eb7e30")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.19.0-rc1/tiledb-macos-arm64-2.19.0-rc1-fa30a88a.tar.gz")
SET(DOWNLOAD_SHA1 "aadebffd21fbd9644be9f09eeb4c77729348f30b")
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.18.2/tiledb-linux-x86_64-2.18.2-9ae6e1a.tar.gz")
SET(DOWNLOAD_SHA1 "6386504a58d52330f41fa688a2b259b67824e2c8")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.19.0-rc1/tiledb-linux-x86_64-2.19.0-rc1-fa30a88a.tar.gz")
SET(DOWNLOAD_SHA1 "070606027fe31530a0c6d42cd562f2eeaac70508")
else()
message(STATUS "Using Linux binaries without AVX2")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.18.2/tiledb-linux-x86_64-noavx2-2.18.2-9ae6e1a.tar.gz")
SET(DOWNLOAD_SHA1 "96d558aae525c4a665a0b1e9cdcce75a97e3d966")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.19.0-rc1/tiledb-linux-x86_64-noavx2-2.19.0-rc1-fa30a88a.tar.gz")
SET(DOWNLOAD_SHA1 "9a406cbb0138fb0409226087ef5daf5f99c26d06")
endif()
endif()

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
TILEDB_GIT_REPOSITORY=https://github.com/TileDB-Inc/TileDB
TILEDB_GIT_TAG=2.18.2
TILEDB_GIT_TAG=2.19.0-rc1
TILEDB_VERBOSE=ON
TILEDB_S3=ON
TILEDB_AZURE=OFF
TILEDB_HDFS=OFF
TILEDB_SERIALIZATION=OFF
FORCE_BUILD_TILEDB=OFF
FORCE_BUILD_TILEDB=ON
DOWNLOAD_TILEDB_PREBUILT=ON
TILEDB_SKIP_S3AWSSDK_DIR_LENGTH_CHECK=ON
USE_AVX2=OFF
2 changes: 1 addition & 1 deletion src/test/java/io/tiledb/java/api/ArraySchemaTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void testArraySchemaSetAllowDups() throws Exception {
public void testArraySchemaVersion() throws Exception {
try (Context ctx = new Context();
ArraySchema schema = schemaCreate(ctx, ArrayType.TILEDB_SPARSE, layout)) {
Assert.assertEquals(20, schema.getVersion());
Assert.assertEquals(21, schema.getVersion());
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/test/java/io/tiledb/java/api/VersionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void testVersion() {
Version version = new Version();
System.out.println(version);
Assert.assertTrue(version.getMajor() == 2);
Assert.assertTrue(version.getMinor() == 18);
Assert.assertTrue(version.getRevision() == 2);
Assert.assertTrue(version.getMinor() == 19);
Assert.assertTrue(version.getRevision() == 0);
}
}

0 comments on commit d9d48f5

Please sign in to comment.