We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18c4596 commit 03afaeeCopy full SHA for 03afaee
1 file changed
.github/workflows/codspeed.yml
@@ -16,7 +16,7 @@ jobs:
16
benchmark:
17
- testdata/take_strings-aarch64
18
valgrind:
19
- - /usr/bin/valgrind
+ - /bin/valgrind
20
- ../vg-in-place
21
steps:
22
- uses: actions/checkout@v4
@@ -44,7 +44,8 @@ jobs:
44
sudo apt-get install -y valgrind
45
which valgrind
46
which -a valgrind
47
- valgrind --version
+ /usr/bin/valgrind --version
48
+ /bin/valgrind --version
49
50
- name: Install build dependencies
51
run: |
@@ -67,7 +68,10 @@ jobs:
67
68
69
- name: Build Valgrind
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
75
76
- name: Verify Valgrind build
77
0 commit comments