From 6d4fd02b92b147340a763c5c9156e578caf37cbb Mon Sep 17 00:00:00 2001 From: Luke Date: Thu, 24 Dec 2020 13:03:08 +0000 Subject: [PATCH] Meta: Set two minute timeout for CMake tests CMake tests usually takes ~40 seconds. However, sometimes it deadlocks and is only timed out after the 6 hour time limit. Let's set a 2 minute timeout to make it fail sooner. 2 minutes instead of 1 for good measure. --- .github/workflows/cmake.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index f2c381051b..23fc2ccd2f 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -79,6 +79,7 @@ jobs: - name: Run CMake tests working-directory: ${{ github.workspace }}/Build run: CTEST_OUTPUT_ON_FAILURE=1 ninja test + timeout-minutes: 2 - name: Run JS tests working-directory: ${{ github.workspace }}/Build/Meta/Lagom run: DISABLE_DBG_OUTPUT=1 ./test-js