Skip to content

Commit

Permalink
try fail-fast option
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Dec 5, 2024
1 parent 4b131ca commit 5fed00c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
shell: bash {0}
steps:
- name: Run ${{ inputs.compiler }} tests
# Allows the check status step to run even if this one fails
continue-on-error: true
run: |
pwd
cd cime/scripts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/derecho.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
build:
strategy:
# run all matrix members even if one fails
fail-fast: false
matrix:
compiler: [gnu, intel, intel-oneapi, nvhpc]
# Allows the next step to run even if this one fails
continue-on-error: true
uses: ./.github/workflows/build.yaml
with:
compiler: ${{ matrix.compiler }}

0 comments on commit 5fed00c

Please sign in to comment.