We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f334bd9 commit 1c3fcaaCopy full SHA for 1c3fcaa
.github/workflows/dynamic_arch.yml
@@ -287,9 +287,22 @@ jobs:
287
key: ${{ steps.ccache-prepare.outputs.key }}
288
289
- name: Run tests
290
+ id: run-ctest
291
timeout-minutes: 60
292
run: cd build && ctest
293
294
+ - name: Re-run tests
295
+ if: always() && (steps.run-ctest.outcome == 'failure')
296
+ timeout-minutes: 60
297
+ run: |
298
+ cd build
299
+ echo "::group::Re-run ctest"
300
+ ctest --rerun-failed --output-on-failure || true
301
+ echo "::endgroup::"
302
+ echo "::group::Log from these tests"
303
+ [ ! -f Testing/Temporary/LastTest.log ] || cat Testing/Temporary/LastTest.log
304
305
+
306
307
cross_build:
308
runs-on: ubuntu-22.04
0 commit comments