Skip to content

Commit

Permalink
[c++] Use core 2.27.2 (#3754)
Browse files Browse the repository at this point in the history
* [python] Use same slicing semantics for `DenseNDArray` (#3750)

* [c++] Use core 2.27.2

---------

Co-authored-by: nguyenv <[email protected]>
  • Loading branch information
johnkerl and nguyenv authored Mar 5, 2025
1 parent d489f05 commit 571ca98
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/libtiledbsoma-asan-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
mkdir -p external
# Please do not edit manually -- let scripts/update-tiledb-version.py update this
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-linux-x86_64-2.27.1-d92bee7.tar.gz
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-linux-x86_64-2.27.2-1757013.tar.gz
tar -C external -xzf tiledb-*.tar.gz
ls external/lib/
- name: Build and install libtiledbsoma
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python-ci-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
run: |
mkdir -p external
# Please do not edit manually -- let scripts/update-tiledb-version.py update this
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-linux-x86_64-2.27.1-d92bee7.tar.gz
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-linux-x86_64-2.27.2-1757013.tar.gz
tar -C external -xzf tiledb-linux-x86_64-*.tar.gz
ls external/lib/
echo "LD_LIBRARY_PATH=$(pwd)/external/lib" >> $GITHUB_ENV
Expand Down Expand Up @@ -180,10 +180,10 @@ jobs:
mkdir -p external
# Please do not edit manually -- let scripts/update-tiledb-version.py update this
if [ `uname -m` == "arm64" ]; then
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-arm64-2.27.1-d92bee7.tar.gz
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-arm64-2.27.2-1757013.tar.gz
tar -C external -xzf tiledb-macos-arm64-*.tar.gz
else
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-x86_64-2.27.1-d92bee7.tar.gz
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-x86_64-2.27.2-1757013.tar.gz
tar -C external -xzf tiledb-macos-x86_64-*.tar.gz
fi
ls external/lib/
Expand Down Expand Up @@ -276,14 +276,14 @@ jobs:
if [ `uname -s` == "Darwin" ]; then
if [ `uname -m` == "arm64" ]; then
# Please do not edit manually -- let scripts/update-tiledb-version.py update this
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-arm64-2.27.1-d92bee7.tar.gz
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-arm64-2.27.2-1757013.tar.gz
else
# Please do not edit manually -- let scripts/update-tiledb-version.py update this
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-x86_64-2.27.1-d92bee7.tar.gz
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-x86_64-2.27.2-1757013.tar.gz
fi
else
# Please do not edit manually -- let scripts/update-tiledb-version.py update this
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-linux-x86_64-2.27.1-d92bee7.tar.gz
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-linux-x86_64-2.27.2-1757013.tar.gz
fi
tar -C external -xzf tiledb-*.tar.gz
ls external/lib/
Expand Down
6 changes: 3 additions & 3 deletions apis/r/tools/get_tarball.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ isLinux <- Sys.info()["sysname"] == "Linux"
if (isMac) {
arch <- system('uname -m', intern = TRUE)
if (arch == "x86_64") {
url <- "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-x86_64-2.27.1-d92bee7.tar.gz"
url <- "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-x86_64-2.27.2-1757013.tar.gz"
} else if (arch == "arm64") {
url <- "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-arm64-2.27.1-d92bee7.tar.gz"
url <- "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-arm64-2.27.2-1757013.tar.gz"
} else {
stop("Unsupported Mac architecture. Please have TileDB Core installed locally.")
}
} else if (isLinux) {
url <- "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-linux-x86_64-2.27.1-d92bee7.tar.gz"
url <- "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-linux-x86_64-2.27.2-1757013.tar.gz"
} else {
message("Unsupported platform for downloading artifacts. Please have TileDB Core installed locally.")
q(save = "no", status = 1)
Expand Down
28 changes: 14 additions & 14 deletions libtiledbsoma/cmake/Modules/FindTileDB_EP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ else()
# NB When updating the pinned URLs here, please also update in file apis/r/tools/get_tarball.R
if(DOWNLOAD_TILEDB_PREBUILT)
if (WIN32) # Windows
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-windows-x86_64-2.27.1-d92bee7.zip")
SET(DOWNLOAD_SHA1 "def53c5e856339f2153c6d5452486809c8de58b5")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-windows-x86_64-2.27.2-1757013.zip")
SET(DOWNLOAD_SHA1 "5da48363d51383d9c1b14300bb99dfa8209864c7")
elseif(APPLE) # OSX

# Status quo as of 2023-05-18:
Expand All @@ -56,22 +56,22 @@ else()
# o CMAKE_SYSTEM_PROCESSOR is x86_64

if (CMAKE_OSX_ARCHITECTURES STREQUAL x86_64)
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-x86_64-2.27.1-d92bee7.tar.gz")
SET(DOWNLOAD_SHA1 "1a7d565711db9fe5cc722c43a6e0cfb70d3c3ef0")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-x86_64-2.27.2-1757013.tar.gz")
SET(DOWNLOAD_SHA1 "3d3a99d84f72a363aa24f08a0763f38cdd8a7d33")
elseif (CMAKE_OSX_ARCHITECTURES STREQUAL arm64)
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-arm64-2.27.1-d92bee7.tar.gz")
SET(DOWNLOAD_SHA1 "1ae89ebf4c7d907d2bf94cf8c1c1b445877c9b6e")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-arm64-2.27.2-1757013.tar.gz")
SET(DOWNLOAD_SHA1 "1207e12bddc0ada597a28eaf940a0d02a368fb94")
elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-x86_64-2.27.1-d92bee7.tar.gz")
SET(DOWNLOAD_SHA1 "1a7d565711db9fe5cc722c43a6e0cfb70d3c3ef0")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-x86_64-2.27.2-1757013.tar.gz")
SET(DOWNLOAD_SHA1 "3d3a99d84f72a363aa24f08a0763f38cdd8a7d33")
elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-macos-arm64-2.27.1-d92bee7.tar.gz")
SET(DOWNLOAD_SHA1 "1ae89ebf4c7d907d2bf94cf8c1c1b445877c9b6e")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-macos-arm64-2.27.2-1757013.tar.gz")
SET(DOWNLOAD_SHA1 "1207e12bddc0ada597a28eaf940a0d02a368fb94")
endif()

else() # Linux
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.1/tiledb-linux-x86_64-2.27.1-d92bee7.tar.gz")
SET(DOWNLOAD_SHA1 "38be662d58126ada761af958da86e19b86b78eb3")
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.27.2/tiledb-linux-x86_64-2.27.2-1757013.tar.gz")
SET(DOWNLOAD_SHA1 "4cac3813710aa0205d29e7ec23bc07397cd86344")
endif()

ExternalProject_Add(ep_tiledb
Expand All @@ -93,8 +93,8 @@ else()
else() # Build from source
ExternalProject_Add(ep_tiledb
PREFIX "externals"
URL "https://github.com/TileDB-Inc/TileDB/archive/2.27.1.zip"
URL_HASH SHA1=781cd775185ed962a8968ca991259b40428ab6d3
URL "https://github.com/TileDB-Inc/TileDB/archive/2.27.2.zip"
URL_HASH SHA1=e24f40741523414a87fcae31af40882e59015d3b
DOWNLOAD_NAME "tiledb.zip"
CMAKE_ARGS
-DCMAKE_INSTALL_PREFIX=${EP_INSTALL_PREFIX}
Expand Down

0 comments on commit 571ca98

Please sign in to comment.