Skip to content

Commit

Permalink
cmp - add fortran compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
claudioperez committed Mar 11, 2024
1 parent 035f28e commit 3aac8d4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,32 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest] #ubuntu-latest, windows-latest]
toolchain:
- {compiler: gcc, version: 13}
# - {compiler: intel, version: '2023.2'}
# - {compiler: intel-classic, version: '2021.10'}
# - {compiler: nvidia-hpc, version: '23.11'}
include:
- os: ubuntu-latest
toolchain: {compiler: gcc, version: 12}
exclude:
- os: macos-latest
toolchain: {compiler: intel, version: '2023.2'}
- os: macos-latest
toolchain: {compiler: nvidia-hpc, version: '23.11'}
# - os: windows-latest
# toolchain: {compiler: nvidia-hpc, version: '23.11'}

steps:
- uses: actions/checkout@v4
with:
submodules: true

- uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}

- uses: pypa/[email protected]
env:
Expand Down

0 comments on commit 3aac8d4

Please sign in to comment.