@@ -56,18 +56,15 @@ jobs:
56
56
--slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V} \
57
57
--slave /usr/bingcov gcov /usr/bin/gcov-${GCC_V}
58
58
59
- - name : Compile_with_cmake
59
+ - name : Compile_with_build_mkdocs
60
60
if : matrix.gcc_v == 7
61
61
run : |
62
- GFORTRAN=gfortran-${{ matrix.gcc_v }}
63
- GCOV=gcov-${{ matrix.gcc_v }}
64
- # CMake build with unit tests, no documentation, with coverage analysis
65
- # No unicode so that coverage combined with the build script will cover unicode
66
- # and non-unicode code paths
67
- mkdir cmake-build
68
- cd cmake-build
69
- cmake ..
70
- make -j 4 check
62
+ # build with build.sh, make documentation, run unit tests
63
+ # and perform coverage analysis
64
+ ./build.sh --coverage --skip-documentation
65
+ ./build.sh --coverage --enable-unicode"
66
+ CODE_COVERAGE="yes"
67
+ DEPLOY_DOCUMENTATION="yes"
71
68
72
69
- name : Compile_with_build
73
70
if : matrix.gcc_v == 8
@@ -80,16 +77,18 @@ jobs:
80
77
CODE_COVERAGE="no"
81
78
DEPLOY_DOCUMENTATION="no"
82
79
83
- - name : Compile_with_build_mkdocs
80
+ - name : Compile_with_cmake
84
81
if : matrix.gcc_v == 9
85
82
run : |
86
- # build with build.sh, make documentation, run unit tests
87
- # and perform coverage analysis
88
- ./build.sh --coverage --skip-documentation
89
- ./build.sh --coverage --enable-unicode"
90
- CODE_COVERAGE="yes"
91
- DEPLOY_DOCUMENTATION="yes"
92
-
83
+ GFORTRAN=gfortran-${{ matrix.gcc_v }}
84
+ GCOV=gcov-${{ matrix.gcc_v }}
85
+ # CMake build with unit tests, no documentation, with coverage analysis
86
+ # No unicode so that coverage combined with the build script will cover unicode
87
+ # and non-unicode code paths
88
+ mkdir cmake-build
89
+ cd cmake-build
90
+ cmake ..
91
+ make -j 4 check
93
92
94
93
# - name: Run tests
95
94
# run: |
0 commit comments