We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6609cc0 commit 896ef37Copy full SHA for 896ef37
.github/workflows/CI.yml
@@ -73,14 +73,14 @@ jobs:
73
working-directory: build
74
75
- name: Test in-tree builds
76
- if: contains( matrix.gcc_v, '9') # Only test one compiler on each platform
+ if: contains( matrix.gcc_v, '10') # Only test one compiler on each platform
77
run: |
78
cmake -DCMAKE_MAXIMUM_RANK=4 .
79
cmake --build .
80
cmake --build . --target test
81
82
- name: Test manual makefiles
83
- if: contains(matrix.os, 'ubuntu') && contains(matrix.gcc_v, '9')
+ if: contains(matrix.os, 'ubuntu') && contains(matrix.gcc_v, '10')
84
85
make -f Makefile.manual FYPPFLAGS="-DMAXRANK=4"
86
make -f Makefile.manual test
0 commit comments