From 5fd7a79b37ee4981a699558e280ba3102c463770 Mon Sep 17 00:00:00 2001 From: Ihor Dutchak Date: Sat, 5 Aug 2023 16:19:00 +0300 Subject: [PATCH] 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; --- .github/workflows/builds.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index d7c0536ac..637171d24 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -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