Skip to content

Commit

Permalink
Updated the versions of all GH actions and TileDB libs.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Sep 29, 2024
1 parent 0573010 commit 32812d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,28 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get latest CMake
uses: lukka/get-cmake@latest

- name: Install tatami_chunked
run: |
git clone https://github.com/tatami-inc/tatami_chunked dep-tatami_chunked --depth=1
cd dep-tatami_chunked
cmake -S . -B build -DTATAMI_CHUNKED_TESTS=OFF
sudo cmake --install build
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: libtiledb
key: tiledb-2.15.3
key: tiledb-2.26.2

- name: Install TileDB
if: steps.cache.outputs.cache-hit != 'true'
run: |
sudo apt-get install wget
mkdir libtiledb
cd libtiledb
wget https://github.com/TileDB-Inc/TileDB/releases/download/2.15.3/tiledb-linux-x86_64-2.15.3-689bea0.tar.gz -O tiledb.tar.gz
wget https://github.com/TileDB-Inc/TileDB/releases/download/2.26.2/tiledb-linux-x86_64-2.26.2-30fc114.tar.gz -O tiledb.tar.gz
tar -xvf tiledb.tar.gz
- name: Configure the build
run: cmake -S . -B build -DTATAMI_TILEDB_FETCH_EXTERN=OFF -DTATAMI_TILEDB_TESTS=OFF -DCMAKE_PREFIX_PATH=libtiledb
run: cmake -S . -B build -DTATAMI_TILEDB_TESTS=OFF -DCMAKE_PREFIX_PATH=libtiledb

- name: Install the library
run: sudo cmake --install build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get current version
id: current
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
id: cache
with:
path: libtiledb
key: tiledb-2.15.3
key: tiledb-2.26.2

- name: Install TileDB
if: steps.cache.outputs.cache-hit != 'true'
run: |
sudo apt-get install wget
mkdir libtiledb
cd libtiledb
wget https://github.com/TileDB-Inc/TileDB/releases/download/2.15.3/tiledb-linux-x86_64-2.15.3-689bea0.tar.gz -O tiledb.tar.gz
wget https://github.com/TileDB-Inc/TileDB/releases/download/2.26.2/tiledb-linux-x86_64-2.26.2-30fc114.tar.gz -O tiledb.tar.gz
tar -xvf tiledb.tar.gz
- name: Configure the build with coverage
Expand Down

0 comments on commit 32812d5

Please sign in to comment.