Skip to content

Commit

Permalink
Replace matrix with explicit list in the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aradi committed Sep 27, 2024
1 parent e5c0a2d commit 0cbbc5c
Showing 1 changed file with 42 additions and 13 deletions.
55 changes: 42 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,55 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
compiler: [gnu, intel]
interface: [serial, mpi]
exclude:
- os: macos-latest
compiler: intel
os: []
compiler: []
mpi: []
interface: []
# os: [ubuntu-latest, macos-latest]
# compiler: [gnu, intel]
# interface: [serial, mpi]
# exclude:
# - os: macos-latest
# compiler: intel
# include:
# - interface: serial
# mpi: nompi
# - interface: mpi
# os: ubuntu-latest
# compiler: gnu
# mpi: mpich
# - interface: mpi
# os: ubuntu-latest
# compiler: intel
# mpi: impi
# - interface: mpi
# os: macos-latest
# mpi: openmpi
include:
- interface: serial
- os: ubuntu-lastest
compiler: gnu
mpi: nompi
- interface: mpi
os: ubuntu-latest
interface: serial
- os: ubuntu-latest
compiler: gnu
mpi: mpich
- interface: mpi
os: ubuntu-latest
interface: mpi
- os: ubuntu-latest
compiler: intel
mpi: nompi
interface: serial
- os: ubuntu-latest
compiler: intel
mpi: impi
- interface: mpi
os: macos-latest
interface: mpi
- os: macos-latest
compiler: gnu
mpi: nompi
interface: serial
- os: macos-latest
compiler: gnu
mpi: openmpi
interface: mpi

steps:

Expand Down

0 comments on commit 0cbbc5c

Please sign in to comment.