@@ -23,19 +23,23 @@ jobs:
23
23
matrix :
24
24
os : [ubuntu-latest, macos-13, windows-latest]
25
25
toolchain :
26
- - {compiler: gcc, version: 10}
27
26
- {compiler: gcc, version: 11}
28
27
- {compiler: gcc, version: 12}
29
28
- {compiler: gcc, version: 13}
30
29
- {compiler: gcc, version: 14}
30
+ - {compiler: gcc, version: 15}
31
31
- {compiler: intel, version: 2025.1}
32
32
exclude :
33
+ - os : ubuntu-latest # gcc 15 not available on Ubuntu LTS yet
34
+ toolchain : {compiler: gcc, version: 15}
33
35
- os : macos-13 # No Intel on MacOS anymore since 2024
34
36
toolchain : {compiler: intel, version: '2025.1'}
35
37
- os : windows-latest # Doesn't pass build and tests yet
36
38
toolchain : {compiler: intel, version: '2025.1'}
37
39
- os : windows-latest # gcc 14 not available on Windows yet
38
40
toolchain : {compiler: gcc, version: 14}
41
+ - os : windows-latest # gcc 15 not available on Windows yet
42
+ toolchain : {compiler: gcc, version: 15}
39
43
include :
40
44
- os : ubuntu-latest
41
45
os-arch : linux-x86_64
@@ -110,6 +114,7 @@ jobs:
110
114
${{ env.BOOTSTRAP }} run -- --help
111
115
112
116
- name : Test Fortran fpm (bootstrap)
117
+ if : matrix.toolchain.compiler == 'gcc' && matrix.toolchain.version != 15
113
118
shell : bash
114
119
run : |
115
120
${{ env.BOOTSTRAP }} test
0 commit comments