Skip to content

Commit 56af3ef

Browse files
committed
Install valgrind from source
1 parent a1a2c66 commit 56af3ef

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,15 @@ jobs:
2727
runs-on: ubuntu-latest
2828

2929
steps:
30-
- run: sudo apt-get install -y valgrind
30+
- name: Install valgrind from source
31+
run: |
32+
sudo apt-get install -y libc6-dbg
33+
wget https://sourceware.org/pub/valgrind/valgrind-3.20.0.tar.bz2
34+
tar xvf valgrind-3.20.0.tar.bz2
35+
cd valgrind-3.20.0
36+
./configure
37+
make
38+
sudo make install
3139
3240
- uses: actions/checkout@v2
3341

0 commit comments

Comments
 (0)