From 868d84d8eebc83416e60acfc4b375ceeb5172a28 Mon Sep 17 00:00:00 2001 From: Samson <16504129+sagudev@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:50:34 +0100 Subject: [PATCH] Retry smoketest on mac (#30716) --- .github/workflows/mac.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 1d5c3dc5b6c..fcabcefd6a1 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -83,7 +83,11 @@ jobs: run: | python3 ./mach build --${{ inputs.profile }} - name: Smoketest - run: python3 ./mach smoketest --${{ inputs.profile }} + uses: nick-fields/retry@v2 + with: # See https://github.com/servo/servo/issues/30757 + timeout_minutes: 5 + max_attempts: 2 + command: python3 ./mach smoketest --${{ inputs.profile }} - name: Script tests run: ./mach test-scripts - name: Unit tests