From 3aac8d4b4574761c7eb6f63ca90bedd01728ff69 Mon Sep 17 00:00:00 2001 From: claudio perez <50180406+claudioperez@users.noreply.github.com> Date: Mon, 11 Mar 2024 13:07:22 -0700 Subject: [PATCH] cmp - add fortran compiler --- .github/workflows/wheels.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 86c2e107a0..1b1b674447 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -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/cibuildwheel@v2.16 env: