Skip to content

Commit 9bc18bc

Browse files
For now, do not run tests on Windows
1 parent c819999 commit 9bc18bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cmake.yml

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

0 commit comments

Comments
 (0)