Skip to content

Commit

Permalink
Github actions: (fix) valgrind (HDFGroup#70)
Browse files Browse the repository at this point in the history
- Update APT sources before installing valgrind.
  • Loading branch information
jwsblokland authored Sep 15, 2023
1 parent 3eb181c commit 6123ce7
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ jobs:
pytest
- name: Install valgrind
run: sudo apt install valgrind
run: |
sudo apt update
sudo apt install valgrind
working-directory: ${{ github.workspace }}

- name: Start HSDS
Expand Down Expand Up @@ -262,7 +264,9 @@ jobs:
pytest
- name: Install valgrind
run: sudo apt install valgrind
run: |
sudo apt update
sudo apt install valgrind
working-directory: ${{ github.workspace }}

- name: Start HSDS
Expand Down Expand Up @@ -371,7 +375,9 @@ jobs:
working-directory: ${{github.workspace}}/hdf5/build

- name: Install valgrind
run: sudo apt install valgrind
run: |
sudo apt update
sudo apt install valgrind
working-directory: ${{ github.workspace }}

- uses: actions/cache/restore@v3
Expand Down

0 comments on commit 6123ce7

Please sign in to comment.