ci: add valgrind check #5

Merged
light7734 merged 10 commits from ci/valgrind into main 2025-07-17 08:20:49 +00:00
Showing only changes of commit 6f1a3a291f - Show all commits

View file

@ -25,5 +25,5 @@ steps:
-o enable_tests=True \
--build=missing
find ./build -type f -name "tests" -executable | xargs -I {} bash -c 'valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --error-exitcode=255 {}' || exit 1
find ./build -type f -name "*_tests" -executable | xargs -I {} bash -c 'valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --error-exitcode=255 {}' || exit 1