Skip to content

Commit

Permalink
Update to TileDB 2.11.4 (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
gspowley authored Mar 29, 2023
1 parent 6dd03ca commit 6d6d246
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 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.19.2'
version '0.19.3'

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.19.2'
version '0.19.3'

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.19.2'
version '0.19.3'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
6 changes: 3 additions & 3 deletions ci/azure-linux_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ steps:
- bash: |
set -e pipefail
brew install clang-format
sudo apt install -y clang-format
src=$BUILD_REPOSITORY_LOCALPATH/libtiledbvcf
cd $BUILD_REPOSITORY_LOCALPATH
ci/run-clang-format.sh $src clang-format 0 \
$(find $src/src $src/test -name "*.cc" -or -name "*.c" -or -name "*.h")
apis=$BUILD_REPOSITORY_LOCALPATH/apis
ci/run-clang-format.sh $apis clang-format 0 \
$(find $apis -name "*.cc" -or -name "*.c" -or -name "*.h")
condition: eq(variables['Agent.OS'], 'Darwin')
displayName: 'Check formatting (macOS only)'
condition: eq(variables['Agent.OS'], 'Linux')
displayName: 'Check formatting (Linux only)'
- bash: |
set -e pipefail
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 @@ -48,20 +48,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.11.3/tiledb-windows-x86_64-2.11.3-a55a910.zip")
SET(DOWNLOAD_SHA1 "0bd042b1c56da9fc1c20b2156e942c23ba1865ac")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.4/tiledb-windows-x86_64-2.11.4-f07bb38.zip")
SET(DOWNLOAD_SHA1 "4e74d9046af5b65ae50860734545ab5f0e36a632")
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.11.3/tiledb-macos-x86_64-2.11.3-a55a910.tar.gz")
SET(DOWNLOAD_SHA1 "f0f091f8401cb1b4060fb3068fe7fc4afdc262b7")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.4/tiledb-macos-x86_64-2.11.4-f07bb38.tar.gz")
SET(DOWNLOAD_SHA1 "42259541ba636408ebb8873a48b8fd448e723148")
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.11.3/tiledb-macos-arm64-2.11.3-a55a910.tar.gz")
SET(DOWNLOAD_SHA1 "6e62360b154af399cc00e74ce6098ef977e04848")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.4/tiledb-macos-arm64-2.11.4-f07bb38.tar.gz")
SET(DOWNLOAD_SHA1 "db03f94df5b3d98b76ef4417c371ae6695c10ec3")
endif()
else() # Linux
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.3/tiledb-linux-x86_64-2.11.3-a55a910.tar.gz")
SET(DOWNLOAD_SHA1 "5c2f44d9ca9b34e61230fd0f0a763f0fffa04702")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.11.4/tiledb-linux-x86_64-2.11.4-f07bb38.tar.gz")
SET(DOWNLOAD_SHA1 "ed2803d49e9eee45aeaa1911c239386ebdf61ac3")
endif()

ExternalProject_Add(ep_tiledb
Expand All @@ -83,8 +83,8 @@ else()
else() # Build from source
ExternalProject_Add(ep_tiledb
PREFIX "externals"
URL "https://github.com/TileDB-Inc/TileDB/archive/2.11.3.zip"
URL_HASH SHA1=f159b1677d9d0471c8f97fe4b0492cef156730f2
URL "https://github.com/TileDB-Inc/TileDB/archive/2.11.4.zip"
URL_HASH SHA1=48c8f0f180656e9ef9f80b4a1f7e4847f075feb2
DOWNLOAD_NAME "tiledb.zip"
CMAKE_ARGS
-DCMAKE_INSTALL_PREFIX=${EP_INSTALL_PREFIX}
Expand Down

0 comments on commit 6d6d246

Please sign in to comment.