Skip to content

Commit caf3ba2

Browse files
committed
ci test
1 parent 25690a4 commit caf3ba2

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/CI.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
gcc_v: [7,8,9] # Version of GFortran we want to use.
1717
python-version: [3.6]
1818
env:
19-
FC: gfortran-${{ matrix.gcc_v }}
20-
GCC_V: ${{ matrix.gcc_v }}
19+
FC: gfortran-${{matrix.gcc_v}}
20+
GCC_V: ${{matrix.gcc_v}}
2121

2222
steps:
2323
- name: Checkout code
@@ -59,6 +59,11 @@ jobs:
5959
- name: Compile_with_build_mkdocs
6060
if: matrix.gcc_v == 7
6161
run: |
62+
GFORTRAN=gfortran-${{matrix.gcc_v}}
63+
GCOV=gcov-${{matrix.gcc_v}}
64+
alias gcov=$GCOV
65+
gfortran --version
66+
gcov --version
6267
# build with build.sh, make documentation, run unit tests
6368
# and perform coverage analysis
6469
./build.sh --coverage --skip-documentation
@@ -69,8 +74,8 @@ jobs:
6974
- name: Compile_with_build
7075
if: matrix.gcc_v == 8
7176
run: |
72-
GFORTRAN=gfortran-${{ matrix.gcc_v }}
73-
GCOV=gcov-${{ matrix.gcc_v }}
77+
GFORTRAN=gfortran-${{matrix.gcc_v}}
78+
GCOV=gcov-${{matrix.gcc_v}}
7479
# build with build.sh, run unit tests
7580
./build.sh --skip-documentation
7681
./build.sh --skip-documentation --enable-unicode
@@ -80,8 +85,8 @@ jobs:
8085
- name: Compile_with_cmake
8186
if: matrix.gcc_v == 9
8287
run: |
83-
GFORTRAN=gfortran-${{ matrix.gcc_v }}
84-
GCOV=gcov-${{ matrix.gcc_v }}
88+
GFORTRAN=gfortran-${{matrix.gcc_v}}
89+
GCOV=gcov-${{matrix.gcc_v}}
8590
# CMake build with unit tests, no documentation, with coverage analysis
8691
# No unicode so that coverage combined with the build script will cover unicode
8792
# and non-unicode code paths

0 commit comments

Comments
 (0)