We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebecdcf commit 723c1d4Copy full SHA for 723c1d4
.github/workflows/ci.yml
@@ -1026,7 +1026,9 @@ jobs:
1026
echo "Skipping Valgrind checks on OS X"
1027
else
1028
echo "Running valgrind on passing tests"
1029
- valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v
+ CLANG_VERSION="${{ matrix.clang-runtime }}"
1030
+ SUPPRESSION_FILE="../etc/clang${CLANG_VERSION}-valgrind.supp"
1031
+ valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --suppressions="${SUPPRESSION_FILE}" --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v
1032
fi
1033
export RETCODE=+$?
1034
echo ::endgroup::
0 commit comments