1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Add test summary to each job (#19824)

This commit is contained in:
Matthias Moninger
2023-04-05 11:17:33 +03:00
committed by GitHub
parent 1dafb8e56e
commit 4248cf3038
2 changed files with 17 additions and 1 deletions

View File

@@ -20,5 +20,5 @@ if [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" ]]; then
./tests --gtest_output=xml:../artifacts/test-results.xml "$@"
else
echo -e "\033[0;36mRunning OpenRCT2 tests...\033[0m"
ctest --output-on-failure "$@"
ctest --output-on-failure --output-junit ../artifacts/test-results.xml "$@"
fi