From 5305af16cd23c17111cebe8b07b7a563cc857e69 Mon Sep 17 00:00:00 2001 From: Seth R Johnson Date: Fri, 20 Sep 2024 11:55:04 -0400 Subject: [PATCH] Suppress known failures --- .github/workflows/build-spack.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-spack.yml b/.github/workflows/build-spack.yml index 26e67486e5..abf4371ad5 100644 --- a/.github/workflows/build-spack.yml +++ b/.github/workflows/build-spack.yml @@ -157,6 +157,7 @@ jobs: - name: Run app tests id: apptest if: ${{!cancelled() && steps.build.outcome == 'success'}} + continue-on-error: ${{matrix.geant == '10.6'}} # TODO: rogue output from G4DeexPrecoParameters env: CTEST_OUTPUT: "${{github.workspace}}/test-output/ctest/all.xml" run: | @@ -166,6 +167,7 @@ jobs: if: >- ${{ always() + && !(fromJSON(matrix.geant || '0') < 11) && (steps.unittest.outcome == 'success' || steps.unittest.outcome == 'failure') }}