Skip to content

Commit 20d3d85

Browse files
committed
try ci without coverage for now
1 parent bc076ca commit 20d3d85

File tree

1 file changed

+24
-25
lines changed

1 file changed

+24
-25
lines changed

.github/workflows/CI.yml

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest]
16-
gcc_v: [9] # Version of GFortran we want to use.
17-
python-version: [3.6]
16+
gcc_v: [8,9,10] # Version of GFortran we want to use.
17+
python-version: [3.7]
1818
env:
1919
FC: gfortran-${{matrix.gcc_v}}
2020
GCC_V: ${{matrix.gcc_v}}
@@ -53,31 +53,30 @@ jobs:
5353
--slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V} \
5454
--slave /usr/bin/gcov gcov /usr/bin/gcov-${GCC_V}
5555
56-
- name: Compile_with_build_mkdocs
57-
if: matrix.gcc_v == 9
58-
run: |
59-
# GFORTRAN=gfortran-${{matrix.gcc_v}}
60-
# GCOV=gcov-${{matrix.gcc_v}}
61-
# alias gcov=$GCOV
62-
gfortran --version
63-
gcov --version
64-
# build with build.sh, make documentation, run unit tests
65-
# and perform coverage analysis
66-
./build.sh --coverage --skip-documentation
67-
./build.sh --coverage --enable-unicode"
68-
CODE_COVERAGE="yes"
69-
DEPLOY_DOCUMENTATION="yes"
70-
71-
# - name: Compile_with_build
56+
# - name: Compile_with_build_mkdocs
7257
# if: matrix.gcc_v == 9
7358
# 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"
59+
# # GFORTRAN=gfortran-${{matrix.gcc_v}}
60+
# # GCOV=gcov-${{matrix.gcc_v}}
61+
# # alias gcov=$GCOV
62+
# gfortran --version
63+
# gcov --version
64+
# # build with build.sh, make documentation, run unit tests
65+
# # and perform coverage analysis
66+
# ./build.sh --coverage --skip-documentation
67+
# ./build.sh --coverage --enable-unicode"
68+
# CODE_COVERAGE="yes"
69+
# DEPLOY_DOCUMENTATION="yes"
70+
71+
- name: Compile_with_build
72+
run: |
73+
GFORTRAN=gfortran-${{matrix.gcc_v}}
74+
GCOV=gcov-${{matrix.gcc_v}}
75+
# build with build.sh, run unit tests
76+
./build.sh --skip-documentation
77+
./build.sh --skip-documentation --enable-unicode
78+
CODE_COVERAGE="no"
79+
DEPLOY_DOCUMENTATION="no"
8180
8281
- name: Compile_with_cmake
8382
if: matrix.gcc_v == 9

0 commit comments

Comments
 (0)