Skip to content

Commit

Permalink
CI: Run update before install for valgrind
Browse files Browse the repository at this point in the history
Was hitting a 404 error when installing valgrind (the libc6-dbg dependency specifically), this might fix it.
  • Loading branch information
squeek502 authored and zhaozg committed Mar 8, 2022
1 parent cdd3489 commit 877789b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
with:
submodules: recursive
- name: Install Valgrind
run: sudo apt-get install -y valgrind
run: |
sudo apt-get update
sudo apt-get install -y valgrind
- name: Build
run: make
- name: Test
Expand Down

0 comments on commit 877789b

Please sign in to comment.