Refine CTest args (#606)

- don't use `--rerun-failed` - it only makes sense on subsequent runs of the test, when checking of failed tests got fixed;
- add `--no-compress-output` - to avoid stripping test's output of failure;
This commit is contained in:
Ihor Dutchak
2023-08-05 16:19:00 +03:00
committed by GitHub
parent 98ab22a33d
commit 5fd7a79b37
+3 -3
View File
@@ -203,7 +203,7 @@ jobs:
- name: Run CTest MSVC
shell: cmd
working-directory: build/msvc
run: ctest -C RelWithDebInfo --rerun-failed --output-on-failure
run: ctest -C RelWithDebInfo --no-compress-output --output-on-failure
- name: Configure CMake NMake
shell: cmd
@@ -239,7 +239,7 @@ jobs:
nmake install
- name: Run CTest NMake
working-directory: build\nmake
run: ctest --rerun-failed --output-on-failure
run: ctest --no-compress-output --output-on-failure
- name: Configure CMake MinGW
shell: cmd
@@ -270,7 +270,7 @@ jobs:
cmake --build . --target install
- name: Run CTest MinGW
working-directory: build\mingw
run: ctest --rerun-failed --output-on-failure
run: ctest --no-compress-output --output-on-failure
- name: Check Meson build
shell: cmd