File tree Expand file tree Collapse file tree 1 file changed +26
-3
lines changed Expand file tree Collapse file tree 1 file changed +26
-3
lines changed Original file line number Diff line number Diff line change 16
16
17
17
jobs :
18
18
19
- unix :
19
+
20
+ gcc-new :
20
21
strategy :
21
22
matrix :
22
- os : [ubuntu-latest ]
23
- fc : [9, 10, 11, 12, 13]
23
+ os : [ubuntu-24.04 ]
24
+ fc : [12, 13, 14 ]
24
25
include :
25
26
- os : macos-latest
26
27
fc : 13
44
45
- run : cmake --workflow --preset debug
45
46
- run : cmake --workflow --preset release
46
47
48
+
49
+ gcc-old :
50
+ strategy :
51
+ matrix :
52
+ os : [ubuntu-22.04]
53
+ fc : [9, 10, 11]
54
+
55
+ runs-on : ${{ matrix.os }}
56
+
57
+ env :
58
+ FC : gfortran-${{ matrix.fc }}
59
+
60
+ steps :
61
+ - uses : actions/checkout@v4
62
+
63
+ - name : install Ninja
64
+ run : sudo apt install --no-install-recommends ninja-build
65
+
66
+ - run : cmake --workflow --preset debug
67
+ - run : cmake --workflow --preset release
68
+
69
+
47
70
windows :
48
71
runs-on : windows-latest
49
72
timeout-minutes : 10
You can’t perform that action at this time.
0 commit comments