Skip to content

Commit 03afaee

Browse files
committed
fix: use apt valgrind
1 parent 18c4596 commit 03afaee

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/codspeed.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
benchmark:
1717
- testdata/take_strings-aarch64
1818
valgrind:
19-
- /usr/bin/valgrind
19+
- /bin/valgrind
2020
- ../vg-in-place
2121
steps:
2222
- uses: actions/checkout@v4
@@ -44,7 +44,8 @@ jobs:
4444
sudo apt-get install -y valgrind
4545
which valgrind
4646
which -a valgrind
47-
valgrind --version
47+
/usr/bin/valgrind --version
48+
/bin/valgrind --version
4849
4950
- name: Install build dependencies
5051
run: |
@@ -67,7 +68,10 @@ jobs:
6768

6869
- name: Build Valgrind
6970
run: |
70-
make -j$(nproc)
71+
make include/vgversion.h
72+
make -j$(nproc) -C VEX
73+
make -j$(nproc) -C coregrind
74+
make -j$(nproc) -C callgrind
7175
7276
- name: Verify Valgrind build
7377
run: |

0 commit comments

Comments
 (0)