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