File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,15 @@ jobs:
32
32
matrix :
33
33
os : [ubuntu-latest, macos-latest, windows-latest]
34
34
toolchain :
35
- - {compiler: gcc, version: 11}
35
+ - {compiler: gcc, version: 13}
36
+ - {compiler: intel, version: '2023.2'}
36
37
- {compiler: intel-classic, version: '2021.10'}
37
38
include :
38
39
- os : ubuntu-latest
39
- toolchain : {compiler: intel , version: '2023.2' }
40
+ toolchain : {compiler: gcc , version: 12 }
40
41
exclude :
41
- - os : windows -latest
42
- toolchain : {compiler: intel-classic , version: '2021.10 '}
42
+ - os : macos -latest
43
+ toolchain : {compiler: intel, version: '2023.2 '}
43
44
44
45
steps :
45
46
- uses : fortran-lang/setup-fortran@v1
48
49
compiler : ${{ matrix.toolchain.compiler }}
49
50
version : ${{ matrix.toolchain.version }}
50
51
51
- - run : ${{ env.FC }} --version
52
- env :
53
- FC : ${{ steps.setup-fortran.outputs.fc }}
52
+ - run : |
53
+ ${{ env.FC }} ... # environment vars FC, CC, and CXX are set
54
+ ${{ steps.setup-fortran.outputs.fc }} ... # outputs work too
54
55
` ` `
55
56
56
57
You can’t perform that action at this time.
0 commit comments