Skip to content

Commit e78b6cc

Browse files
etrclaude
andcommitted
Fix valgrind CI job for Ubuntu 24.04
- Remove valgrind-dbg package (debug symbols now included in main package) - Update valgrind job to use GCC 14 instead of GCC 10 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f5df683 commit e78b6cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/verify-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ jobs:
222222
os-type: ubuntu
223223
build-type: valgrind
224224
compiler-family: gcc
225-
c-compiler: gcc-10
226-
cc-compiler: g++-10
225+
c-compiler: gcc-14
226+
cc-compiler: g++-14
227227
debug: nodebug
228228
coverage: nocoverage
229229
- test-group: extra
@@ -303,7 +303,7 @@ jobs:
303303
if: ${{ matrix.compiler-family == 'gcc' && matrix.os-type == 'ubuntu' }}
304304

305305
- name: Install valgrind if needed
306-
run: sudo apt-get install valgrind valgrind-dbg
306+
run: sudo apt-get install valgrind
307307
if: ${{ matrix.build-type == 'valgrind' && matrix.os-type == 'ubuntu' }}
308308

309309
- name: Install cpplint if needed

0 commit comments

Comments
 (0)