We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c819999 commit 9bc18bcCopy full SHA for 9bc18bc
1 file changed
.github/workflows/cmake.yml
@@ -111,14 +111,14 @@ jobs:
111
112
- name: Test with OpenMP
113
working-directory: ${{github.workspace}}/build
114
- if: ${{ contains( matrix.fflags, 'openmp' ) }}
+ if: ${{ contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }}
115
run: |
116
ctest -D ExperimentalTest --schedule-random -j1 --output-on-failure --timeout 100
117
ctest -D ExperimentalSubmit
118
119
- name: Test
120
121
- if: ${{ !contains( matrix.fflags, 'openmp' ) }}
+ if: ${{ !contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }}
122
123
ctest -D ExperimentalTest --schedule-random -j2 --output-on-failure --timeout 100
124
0 commit comments