From 9bc18bc763b29e572221352150a948f681767991 Mon Sep 17 00:00:00 2001 From: Weslley S Pereira Date: Thu, 25 May 2023 10:06:18 -0600 Subject: [PATCH] For now, do not run tests on Windows --- .github/workflows/cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index ddf6c71ce1..0fe47be75e 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -111,14 +111,14 @@ jobs: - name: Test with OpenMP working-directory: ${{github.workspace}}/build - if: ${{ contains( matrix.fflags, 'openmp' ) }} + if: ${{ contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }} run: | ctest -D ExperimentalTest --schedule-random -j1 --output-on-failure --timeout 100 ctest -D ExperimentalSubmit - name: Test working-directory: ${{github.workspace}}/build - if: ${{ !contains( matrix.fflags, 'openmp' ) }} + if: ${{ !contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }} run: | ctest -D ExperimentalTest --schedule-random -j2 --output-on-failure --timeout 100 ctest -D ExperimentalSubmit