Skip to content

Commit

Permalink
Updated versions of GitHub Actions, update apt-get package lists.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Sep 24, 2024
1 parent 443ddcb commit 54b9cd0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Get latest CMake
uses: lukka/get-cmake@latest
Expand All @@ -24,7 +24,9 @@ jobs:
sudo cmake --install build
- name: Install HDF5
run: sudo apt-get install libhdf5-dev
run: |
sudo apt-get update
sudo apt-get install libhdf5-dev
- name: Configure the build
run: cmake -S . -B build -DTATAMI_HDF5_FETCH_EXTERN=OFF -DTATAMI_HDF5_TESTS=OFF
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
2 changes: 1 addition & 1 deletion .github/workflows/doxygenate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Add Pretty CSS
uses: wei/wget@v1
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ jobs:
}

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

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

- name: Configure the build (Ubuntu)
if: ${{ matrix.config.os == 'ubuntu-latest' }}
run: |
sudo apt-get update
sudo apt-get install libhdf5-dev
cmake -S . -B build -DCODE_COVERAGE=ON
Expand Down Expand Up @@ -66,6 +67,6 @@ jobs:
- name: Upload to Codecov
if: ${{ matrix.config.cov }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: build/tests/CMakeFiles/

0 comments on commit 54b9cd0

Please sign in to comment.