Skip to content

Commit

Permalink
ci: Fix valgrind --gen-suppressions argument
Browse files Browse the repository at this point in the history
It was asking one by one if user wanted to gen suppressions.
For CI it can't be interactive
  • Loading branch information
iamsergio committed Apr 8, 2024
1 parent 314d90d commit 8543c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/valgrind-leakcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
run: cmake --build build-dev6 --parallel

- name: Run valgrind
run: valgrind --leak-check=full --show-leak-kinds=all --gen-suppressions=yes --error-exitcode=1 --exit-on-first-error=yes --suppressions=./valgrind.sup ./build-dev6/bin/qtwidgets_leak_test -platform offscreen
run: valgrind --leak-check=full --show-leak-kinds=all --gen-suppressions=all --error-exitcode=1 --exit-on-first-error=yes --suppressions=./valgrind.sup ./build-dev6/bin/qtwidgets_leak_test -platform offscreen

0 comments on commit 8543c77

Please sign in to comment.