File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
src/test/java/io/tiledb/java/api Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,14 @@ if (NOT TILEDB_FOUND)
48
48
# Try to download prebuilt artifacts unless the user specifies to build from source
49
49
if (DOWNLOAD_TILEDB_PREBUILT )
50
50
if (WIN32 ) # Windows
51
- SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.0 /tiledb-windows-x86_64-2.9.0-e4aa2b5 .zip" )
52
- SET (DOWNLOAD_SHA1 "74f5aa9f57880d1149988ed0ca6d2f6201db2261 " )
51
+ SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.3-rc0 /tiledb-windows-x86_64-2.9.3-rc0-9f4129b .zip" )
52
+ SET (DOWNLOAD_SHA1 "55e25234756058b46062e52d75879e51f00e471d " )
53
53
elseif (APPLE ) # macOS
54
- SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.0 /tiledb-macos-x86_64-2.9.0-e4aa2b5 .tar.gz" )
55
- SET (DOWNLOAD_SHA1 "1398126dc26a7cda60cc4f5eaed0b241eb44f260 " )
54
+ SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.3-rc0 /tiledb-macos-x86_64-2.9.3-rc0-9f4129b .tar.gz" )
55
+ SET (DOWNLOAD_SHA1 "784ed4d17743be6de9ce4c39cc542094f0a65177 " )
56
56
else () # Linux
57
- SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.0 /tiledb-linux-x86_64-2.9.0-e4aa2b5 .tar.gz" )
58
- SET (DOWNLOAD_SHA1 "d62cb708fd5d1b0d5a9eb4c7fd2ad6af6dac0b0f " )
57
+ SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.9.3-rc0 /tiledb-linux-x86_64-2.9.3-rc0-9f4129b .tar.gz" )
58
+ SET (DOWNLOAD_SHA1 "50df5ca97cac19dc9c98fdbe49418bbada1ad754 " )
59
59
endif ()
60
60
61
61
ExternalProject_Add (ep_tiledb
Original file line number Diff line number Diff line change 1
1
TILEDB_GIT_REPOSITORY =https://github.com/TileDB-Inc/TileDB
2
- TILEDB_GIT_TAG =2.9.0
2
+ TILEDB_GIT_TAG =2.9.3-rc0
3
3
TILEDB_VERBOSE =ON
4
4
TILEDB_S3 =ON
5
5
TILEDB_AZURE =OFF
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public void testVersion() {
34
34
Version version = new Version ();
35
35
System .out .println (version );
36
36
Assert .assertTrue (version .getMajor () >= 2 );
37
- Assert .assertTrue (version .getMinor () >= 6 );
38
- Assert .assertTrue (version .getRevision () >= 0 );
37
+ Assert .assertTrue (version .getMinor () >= 9 );
38
+ Assert .assertTrue (version .getRevision () >= 3 );
39
39
}
40
40
}
You can’t perform that action at this time.
0 commit comments