Skip to content

Commit

Permalink
[CI] Install Valgrind in CI container to enable mem tests for C API
Browse files Browse the repository at this point in the history
  • Loading branch information
wavefunction91 committed Sep 24, 2023
1 parent 253ae5c commit 8da6d79
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build_and_test_compiler_zoo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ jobs:
shell: bash
run: cmake --build ${{runner.workspace}}/build -j2

- name: Install Valgrind
shell: bash
run: apt install valgrind

- name: Test
shell: bash
run: cmake --build ${{runner.workspace}}/build --target test
Expand Down Expand Up @@ -72,6 +76,10 @@ jobs:
shell: bash
run: cmake --build ${{runner.workspace}}/build -j2

- name: Install Valgrind
shell: bash
run: apt install valgrind

- name: Test
shell: bash
run: cmake --build ${{runner.workspace}}/build --target test
Expand Down

0 comments on commit 8da6d79

Please sign in to comment.