From ea114b1047a7864b73ffe56ed9434d1cdfafc5fe Mon Sep 17 00:00:00 2001 From: Wiktor Kwapisiewicz Date: Thu, 4 Apr 2024 20:28:02 +0200 Subject: [PATCH] Add timeout to Windows integration test When the integration test fails to build on Windows the job is stuck waiting for the socket. Make it fail after 10 minutes which should be enough for the successful run. Signed-off-by: Wiktor Kwapisiewicz --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 657534b..adc75db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,5 +77,6 @@ jobs: run: ./tests/sign-and-verify.sh if: ${{ ! matrix.windows }} - name: Run integration tests + timeout-minutes: 10 run: ".\\tests\\sign-and-verify-win.bat" if: ${{ matrix.windows }}