Skip to content

Commit

Permalink
fix valgrind workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldsmith committed Apr 20, 2024
1 parent 1153b4c commit ecaada9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ubuntu_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: run apt-get update
run: sudo apt-get -y update

- name: install test tool - valgrind
run: sudo apt-get -y install valgrind
Expand Down Expand Up @@ -237,7 +239,9 @@ jobs:
runs-on: ubuntu-latest

steps:

- name: run apt-get update
run: sudo apt-get -y update

- name: install test tool - valgrind
run: sudo apt-get -y install valgrind

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ubuntu_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: run apt-get update
run: sudo apt-get -y update

- name: install test tool - valgrind
run: sudo apt-get -y install valgrind
Expand Down Expand Up @@ -306,7 +308,9 @@ jobs:
runs-on: ubuntu-latest

steps:

- name: run apt-get update
run: sudo apt-get -y update

- name: install test tool - valgrind
run: sudo apt-get -y install valgrind

Expand Down

0 comments on commit ecaada9

Please sign in to comment.