File tree 3 files changed +16
-11
lines changed 3 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -36,20 +36,25 @@ jobs:
36
36
- os : ubuntu-24.04
37
37
shared : true
38
38
gcc : 14
39
- # - os: macos-latest
40
- # shared: true
41
- # gcc: 13
42
- # - os: macos-latest
43
- # shared: false
44
- # gcc: 13
39
+ - os : macos-latest
40
+ shared : true
41
+ gcc : 14
42
+ - os : macos-latest
43
+ shared : false
44
+ gcc : 14
45
45
46
46
runs-on : ${{ matrix.os }}
47
+
47
48
env :
48
- CC : gcc-${{ matrix.gcc }}
49
49
FC : gfortran-${{ matrix.gcc }}
50
50
51
51
steps :
52
52
- uses : actions/checkout@v4
53
+
54
+ - name : GCC (Linux)
55
+ if : runner.os == 'Linux'
56
+ run : echo "CC=gcc-${{ matrix.gcc }}" >> $GITHUB_ENV
57
+
53
58
- uses : ./.github/workflows/composite-unix
54
59
55
60
Original file line number Diff line number Diff line change @@ -29,14 +29,15 @@ jobs:
29
29
- os : macos-latest
30
30
shared : false
31
31
32
- env :
33
- FC : gfortran-13
34
-
35
32
runs-on : ${{ matrix.os}}
36
33
37
34
steps :
38
35
- uses : actions/checkout@v4
39
36
37
+ - name : GCC 14 (macOS)
38
+ if : runner.os == 'macOS'
39
+ run : echo "FC=gfortran-14" >> $GITHUB_ENV
40
+
40
41
- name : Configure HDF5 library
41
42
run : >-
42
43
cmake
Original file line number Diff line number Diff line change 30
30
- uses : actions/checkout@v4
31
31
32
32
- run : fpm build
33
- - run : fpm test
You can’t perform that action at this time.
0 commit comments