Skip to content
Closed
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: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ jobs:
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
toolchain:
- {compiler: gcc, version: 10}
- {compiler: gcc, version: 11}
- {compiler: gcc, version: 12}
- {compiler: gcc, version: 13}
- {compiler: gcc, version: 14}
- {compiler: gcc, version: 15}
- {compiler: intel, version: 2025.1}
exclude:
- os: ubuntu-latest # gcc 15 not available on Ubuntu LTS yet
toolchain: {compiler: gcc, version: 15}
- os: macos-13 # No Intel on MacOS anymore since 2024
toolchain: {compiler: intel, version: '2025.1'}
- os: windows-latest # Doesn't pass build and tests yet
Expand Down Expand Up @@ -118,6 +119,7 @@ jobs:
${{ env.BOOTSTRAP }} run -- --help

- name: Test Fortran fpm (bootstrap)
if: matrix.toolchain.compiler == 'gcc' && matrix.toolchain.version != 15
shell: bash
run: |
${{ env.BOOTSTRAP }} test --flag " -Wno-external-argument-mismatch"
Expand Down
Loading