Ctest seems to be the problem somehow

This commit is contained in:
Ian Bell
2025-08-08 19:01:00 -04:00
parent c574c8c966
commit ec72f98437

View File

@@ -56,22 +56,22 @@ jobs:
set -x
cmake --build . --target install -j $(nproc) --config $BUILD_TYPE
- name: Test
working-directory: ./build
shell: bash
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: |
ctest -j 1
# - name: Test
# working-directory: ./build
# shell: bash
# # Execute tests defined by the CMake configuration.
# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
# run: |
# ctest -j 1
- name: Rerun failed Tests
if: failure()
working-directory: ./build
shell: bash
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: |
ctest -j 1 --rerun-failed --output-on-failure
# - name: Rerun failed Tests
# if: failure()
# working-directory: ./build
# shell: bash
# # Execute tests defined by the CMake configuration.
# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
# run: |
# ctest -j 1 --rerun-failed --output-on-failure
# TODO: pick one style, for now I'm doing this so I can report zero new failures compared to catch1
- name: Rerun failed Tests in CatchTestRunner directly