Skip to content

Commit

Permalink
Valgrind binary location debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 10, 2023
1 parent ba5abee commit 7c48db1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cmake-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
&& make -j2
&& make install
&& test -e ${{ env.UMB_VALGRIND_BIN }} && echo "Valgrind bin found" || echo "Valgrind bin not found"
&& find / -name valgrind

- name: Set default GCC
run: sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13
Expand Down Expand Up @@ -129,7 +130,7 @@ jobs:
run: ctest -C ${{ matrix.build_type }} --verbose

- name: Print Valgrind version
run: ${{ env.UMB_VALGRIND_BIN }} --version
run: find / -name valgrind && ${{ env.UMB_VALGRIND_BIN }} --version
if: matrix.os == 'ubuntu-latest'

- name: Run UMB generator with Valgrind
Expand Down

0 comments on commit 7c48db1

Please sign in to comment.