We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e88086 commit a75cb41Copy full SHA for a75cb41
1 file changed
.github/workflows/dynamic_arch.yml
@@ -319,15 +319,15 @@ jobs:
319
- name: Run tests
320
id: run-ctest
321
timeout-minutes: 70
322
- run: cd build && OPENBLAS_VERBOSE=2 ctest
+ run: cd build && OPENBLAS_VERBOSE=2 ctest -V
323
324
- name: Re-run tests
325
if: always() && (steps.run-ctest.outcome == 'failure')
326
327
run: |
328
cd build
329
echo "::group::Re-run ctest"
330
- ctest --rerun-failed --output-on-failure || true
+ OPENBLAS_VERBOSE=2 ctest -VV --rerun-failed --output-on-failure || true
331
echo "::endgroup::"
332
echo "::group::Log from these tests"
333
[ ! -f Testing/Temporary/LastTest.log ] || cat Testing/Temporary/LastTest.log
0 commit comments