From 4a8d2d9ed30d17db77b5703a0aeaef9c11e05eee Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Tue, 8 Jul 2025 08:09:46 +0200 Subject: [PATCH] .github/workflows: reduce integration retry to 3 Signed-off-by: Kristoffer Dalby --- .github/workflows/integration-test-template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-test-template.yml b/.github/workflows/integration-test-template.yml index b2177dfd..1c621192 100644 --- a/.github/workflows/integration-test-template.yml +++ b/.github/workflows/integration-test-template.yml @@ -15,7 +15,7 @@ on: type: string jobs: - integration-test: + test: runs-on: ubuntu-latest env: # Github does not allow us to access secrets in pull requests, @@ -75,7 +75,7 @@ jobs: # Some of the jobs might still require manual restart as they are really # slow and this will cause them to eventually be killed by Github actions. attempt_delay: 300000 # 5 min - attempt_limit: 10 + attempt_limit: 3 command: | nix develop --command -- hi run "^${{ inputs.test }}$" \ --timeout=120m \