We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09807ac commit e8998a9Copy full SHA for e8998a9
.github/workflows/CI.yml
@@ -15,6 +15,7 @@ jobs:
15
os: [ubuntu-latest]
16
gcc_v: [7,8,9,10] # Version of GFortran we want to use.
17
python-version: [3.7]
18
+ use-cmake: [0,1]
19
env:
20
FC: gfortran-${{matrix.gcc_v}}
21
GCC_V: ${{matrix.gcc_v}}
@@ -72,6 +73,7 @@ jobs:
72
73
# DEPLOY_DOCUMENTATION="yes"
74
75
- name: Compile_with_build
76
+ if: use-cmake == 0
77
run: |
78
GFORTRAN=gfortran-${{matrix.gcc_v}}
79
GCOV=gcov-${{matrix.gcc_v}}
@@ -82,7 +84,7 @@ jobs:
82
84
DEPLOY_DOCUMENTATION="no"
83
85
86
- name: Compile_with_cmake
- if: matrix.gcc_v == 9
87
+ if: matrix.gcc_v == 9 && use-cmake == 1
88
89
90
0 commit comments