GH-1541 run with extra verbose ctest output

This commit is contained in:
Kevin Heifner
2025-06-03 08:13:29 -05:00
parent 49c36bbf73
commit c31cdfcaf3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ jobs:
chown -R $(id -u):$(id -g) $PWD
zstdcat build.tar.zst | tar x
cd build
ctest --output-on-failure -j $(nproc) -LE "(nonparallelizable_tests|long_running_tests)" ${IS_SAN:+-E 'eos-vm$'} --timeout 480
ctest --output-on-failure --extra-verbose -j $(nproc) -LE "(nonparallelizable_tests|long_running_tests)" ${IS_SAN:+-E 'eos-vm$'} --timeout 480
- name: Upload core files from failed tests
uses: actions/upload-artifact@v4
if: failure()
+1 -1
View File
@@ -44,4 +44,4 @@ jobs:
cmake -S src -B build -DCMAKE_BUILD_TYPE=Release -GNinja
cmake --build build
- name: Test spring
run: ctest --test-dir build -j $(nproc) --output-on-failure -LE "(nonparallelizable_tests|long_running_tests)" --timeout 480
run: ctest --test-dir build -j $(nproc) --output-on-failure --extra-verbose -LE "(nonparallelizable_tests|long_running_tests)" --timeout 480