Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/step_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
${{ matrix.mpi && format('🖧 {0}', matrix.mpi) || '' }}
${{ matrix.experimental && '[🧪 Experimental]' || '' }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
container: ${{ !matrix.os && 'ghcr.io/lecrisut/dev-env:main' || '' }}
container: ${{ !matrix.os && format('ghcr.io/lecrisut/dev-env:latest-{0}', matrix.toolchain) || '' }}
continue-on-error: ${{ matrix.experimental || false }}
strategy:
fail-fast: false
Expand All @@ -40,7 +40,7 @@ jobs:
# experimental: false
steps:
- name: Install missing packages
run: sudo dnf install -y bzip2 python-unversioned-command which
run: sudo dnf install -y bzip2 python-unversioned-command which diff
- name: Load mpi module ${{ matrix.mpi || '' }}
run: |
# Get interactive profile to be able to load modules
Expand Down
Loading