Skip to content

Commit 88f56ce

Browse files
For now, do not run tests on Windows
1 parent f7b6056 commit 88f56ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,14 @@ jobs:
113113
114114
- name: Test with OpenMP
115115
working-directory: ${{github.workspace}}/build
116-
if: ${{ contains( matrix.fflags, 'openmp' ) }}
116+
if: ${{ contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }}
117117
run: |
118118
ctest -D ExperimentalTest --schedule-random -j1 --output-on-failure --timeout 100
119119
ctest -D ExperimentalSubmit
120120
121121
- name: Test
122122
working-directory: ${{github.workspace}}/build
123-
if: ${{ !contains( matrix.fflags, 'openmp' ) }}
123+
if: ${{ !contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }}
124124
run: |
125125
ctest -D ExperimentalTest --schedule-random -j2 --output-on-failure --timeout 100
126126
ctest -D ExperimentalSubmit

0 commit comments

Comments
 (0)