Skip to content

Commit 07161cf

Browse files
committed
try gfortran 15
1 parent 39bda83 commit 07161cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest]
13-
gcc_v: [12,10,11,9] # Version of GFortran we want to use.
13+
gcc_v: [15,10,11,9] # Version of GFortran we want to use.
1414
python-version: [3.11]
1515
env:
1616
FC: gfortran-${{matrix.gcc_v}}
@@ -22,7 +22,7 @@ jobs:
2222
# 9 - build.sh with documentation, unit tests and coverage analysis. doc deployment
2323
# 10 - build.sh - no documentation, with and without unicode.
2424
# 11 - FPM
25-
# 12 - CMake build with unit tests, no documentation, with coverage analysis. no unicode
25+
# 15 - CMake build with unit tests, no documentation, with coverage analysis. no unicode
2626
#
2727
# NOTE: coverage disabled for now
2828

@@ -34,7 +34,7 @@ jobs:
3434
submodules: recursive
3535

3636
- name: Setup cmake
37-
if: contains( matrix.gcc_v, 12 )
37+
if: contains( matrix.gcc_v, 15 )
3838
uses: jwlawson/actions-setup-cmake@v2.0.2
3939
with:
4040
cmake-version: '3.28.x'
@@ -93,7 +93,7 @@ jobs:
9393
# CMake build with unit tests, no documentation, with coverage analysis
9494
# No unicode so that coverage combined with the build script will cover unicode
9595
# and non-unicode code paths
96-
if: matrix.gcc_v == 12
96+
if: matrix.gcc_v == 15
9797
run: |
9898
GFORTRAN=gfortran-${{matrix.gcc_v}}
9999
GCOV=gcov-${{matrix.gcc_v}}

0 commit comments

Comments
 (0)