Skip to content

Commit bc076ca

Browse files
committed
try only gcc 9
1 parent 8534c4f commit bc076ca

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/CI.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest]
16-
gcc_v: [7,8,9] # Version of GFortran we want to use.
16+
gcc_v: [9] # Version of GFortran we want to use.
1717
python-version: [3.6]
1818
env:
1919
FC: gfortran-${{matrix.gcc_v}}
@@ -26,7 +26,7 @@ jobs:
2626
submodules: recursive
2727

2828
- name: Setup cmake
29-
if: contains( matrix.gcc_v, 7 )
29+
if: contains( matrix.gcc_v, 9 )
3030
uses: jwlawson/[email protected]
3131
with:
3232
cmake-version: '3.19.x'
@@ -54,7 +54,7 @@ jobs:
5454
--slave /usr/bin/gcov gcov /usr/bin/gcov-${GCC_V}
5555
5656
- name: Compile_with_build_mkdocs
57-
if: matrix.gcc_v == 7
57+
if: matrix.gcc_v == 9
5858
run: |
5959
# GFORTRAN=gfortran-${{matrix.gcc_v}}
6060
# GCOV=gcov-${{matrix.gcc_v}}
@@ -68,16 +68,16 @@ jobs:
6868
CODE_COVERAGE="yes"
6969
DEPLOY_DOCUMENTATION="yes"
7070
71-
- name: Compile_with_build
72-
if: matrix.gcc_v == 8
73-
run: |
74-
GFORTRAN=gfortran-${{matrix.gcc_v}}
75-
GCOV=gcov-${{matrix.gcc_v}}
76-
# build with build.sh, run unit tests
77-
./build.sh --skip-documentation
78-
./build.sh --skip-documentation --enable-unicode
79-
CODE_COVERAGE="no"
80-
DEPLOY_DOCUMENTATION="no"
71+
# - name: Compile_with_build
72+
# if: matrix.gcc_v == 9
73+
# run: |
74+
# GFORTRAN=gfortran-${{matrix.gcc_v}}
75+
# GCOV=gcov-${{matrix.gcc_v}}
76+
# # build with build.sh, run unit tests
77+
# ./build.sh --skip-documentation
78+
# ./build.sh --skip-documentation --enable-unicode
79+
# CODE_COVERAGE="no"
80+
# DEPLOY_DOCUMENTATION="no"
8181

8282
- name: Compile_with_cmake
8383
if: matrix.gcc_v == 9

0 commit comments

Comments
 (0)