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