Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward committed Feb 12, 2025
1 parent ef20f1b commit f8f72c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
firedrake-run-split-tests 8 1 "$EXTRA_PYTEST_ARGS --junit-xml=firedrake8_{#}.xml"
- name: Test pyadjoint
if: matrix.scalar-type == 'real' && steps.build.conclusion == 'success'
if: (success() || steps.build.conclusion == 'success') && matrix.scalar-type == 'real'
run: |
. ../firedrake_venv/bin/activate
cd ../firedrake_venv/src/pyadjoint
Expand All @@ -166,7 +166,7 @@ jobs:

- name: Run Gusto smoke tests
# NOTE: Unsure if Gusto is expected to work in complex mode
if: matrix.scalar-type == 'real' && steps.build.conclusion == 'success'
if: (success() || steps.build.conclusion == 'success') && matrix.scalar-type == 'real'
run: |
. ../firedrake_venv/bin/activate
cd ../firedrake_venv/src/gusto
Expand Down

0 comments on commit f8f72c1

Please sign in to comment.