Skip to content

Commit 7b54ec8

Browse files
drewdzzzalyapunov
authored andcommitted
ci: fix valgrind workflow
Valgrind runners fail to fetch valgrind from apt, so let's do apt upgrade before apt install - it solves the problem.
1 parent ac98986 commit 7b54ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/reusable-testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Setup valgrind
3232
if: inputs.use-valgrind
33-
run: sudo apt install -y valgrind
33+
run: sudo apt update && sudo apt install -y valgrind
3434

3535
- name: Build tntcxx
3636
uses: ./.github/actions/build-tntcxx

0 commit comments

Comments
 (0)