From e355cc02637421d19a980d5af0ff2295da979472 Mon Sep 17 00:00:00 2001 From: Samson <16504129+sagudev@users.noreply.github.com> Date: Mon, 4 Nov 2024 10:02:01 +0100 Subject: [PATCH] Bigger timeout for mac unit tests (#34130) I noticed that in practice it takes about ~30min to run unit tests. Signed-off-by: Samson <16504129+sagudev@users.noreply.github.com> --- .github/workflows/mac.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index cf9939efe4e..4467b564426 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -107,7 +107,7 @@ jobs: if: ${{ inputs.unit-tests }} uses: nick-fields/retry@v3 with: - timeout_minutes: 20 # https://github.com/servo/servo/issues/30275 + timeout_minutes: 40 # https://github.com/servo/servo/issues/30275 max_attempts: 3 # https://github.com/servo/servo/issues/30683 command: python3 ./mach test-unit --${{ inputs.profile }} - name: Build mach package