Skip to content

Commit

Permalink
[Backport release-1.7] [ci] Updated hard-coded core version in anothe…
Browse files Browse the repository at this point in the history
…r file (#2212)

* [ci] Updated hard-coded core version in another file (#2207)

* [ci] Updated hard-coded core version in another file

* Run the script

* comment

* Run `scripts/update-tiledb-version.py`

---------

Co-authored-by: John Kerl <kerl.john.r@gmail.com>
  • Loading branch information
github-actions[bot] and johnkerl committed Mar 5, 2024
1 parent ce348a7 commit 86b1933
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-so-copying.yml
Expand Up @@ -55,7 +55,8 @@ jobs:
if: ${{ matrix.TILEDB_EXISTS == 'yes' }}
run: |
mkdir -p external
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.19.1/tiledb-linux-x86_64-2.19.1-29ceb3e7.tar.gz
# Please do not edit manually -- let scripts/update-tiledb-version.py update this
wget --quiet https://github.com/TileDB-Inc/TileDB/releases/download/2.19.2/tiledb-linux-x86_64-2.19.2-dc780d2.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
4 changes: 4 additions & 0 deletions scripts/update-tiledb-version.py
Expand Up @@ -103,6 +103,10 @@ def main(args):
filepath = f"{os.path.dirname(__file__)}/../apis/r/tools/get_tarball.R"
update_version(filepath, new_version, new_hash, update_sha=False)

# update CI version
filepath = f"{os.path.dirname(__file__)}/../.github/workflows/python-so-copying.yml"
update_version(filepath, new_version, new_hash)


if __name__ == "__main__":
description = (
Expand Down

0 comments on commit 86b1933

Please sign in to comment.