From 933b5e75ce4c88647ddfec42ae45ff9421bbaf38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Isager=20Dalsgar=C3=B0?= Date: Mon, 30 Sep 2024 16:44:42 +0200 Subject: [PATCH] Reduce test timeout and disable Windows tests --- .github/workflows/test.yml | 6 +++--- test/CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9399e65..07a0a0a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,9 +17,9 @@ jobs: - os: macos-latest platform: darwin arch: arm64 - - os: windows-latest - platform: win32 - arch: x64 + # - os: windows-latest + # platform: win32 + # arch: x64 runs-on: ${{ matrix.os }} name: ${{ matrix.platform }}-${{ matrix.arch }} steps: diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 381fca8..846d7ec 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -42,6 +42,6 @@ foreach(test IN LISTS tests) set_tests_properties( ${test} PROPERTIES - TIMEOUT 600 + TIMEOUT 120 ) endforeach()