Add macos-15-intel CI runner #25
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| toolchain: | |
| # - {compiler: gcc, version: 15} | |
| - {compiler: intel, version: '2024.1'} | |
| - {compiler: intel, version: '2025.2'} | |
| - {compiler: intel, version: '2025.3'} | |
| - {compiler: intel-classic, version: '2021.10'} | |
| include: | |
| - os: macos-15-intel | |
| toolchain: {compiler: intel-classic, version: '2021.10'} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - uses: fortran-lang/setup-fortran@main | |
| id: setup-fortran | |
| with: | |
| compiler: ${{ matrix.toolchain.compiler }} | |
| version: ${{ matrix.toolchain.version }} | |
| - name: Setup Fortran Package Manager | |
| uses: fortran-lang/setup-fpm@v8 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install GCC-12 on macos-15-intel | |
| if: contains(matrix.os, 'macos-15-intel') | |
| run: | | |
| brew install gcc@12 | |
| - run: | | |
| fpm test |