From 828f2121d4abfcfee95aba4abbc980cf02daa413 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 11 Oct 2024 23:04:24 +0200 Subject: [PATCH] gha: restrict cross and bin-image to 20 minutes We had a couple of runs where these jobs got stuck and github actions didn't allow terminating them, so that they were only terminated after 120 minutes. These jobs usually complete in 5 minutes, so let's give them a shorter timeout. 20 minutes should be enough (don't @ me). Signed-off-by: Sebastiaan van Stijn (cherry picked from commit c68c9aed8cb3916669de6d7f2c564279ec83663f) Signed-off-by: Austin Vazquez --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5f5dedd6e..97d66e5ea6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: prepare-cross: runs-on: ubuntu-latest - timeout-minutes: 120 # guardrails timeout for the whole job + timeout-minutes: 20 # guardrails timeout for the whole job needs: - validate-dco outputs: @@ -88,7 +88,7 @@ jobs: cross: runs-on: ubuntu-20.04 - timeout-minutes: 120 # guardrails timeout for the whole job + timeout-minutes: 20 # guardrails timeout for the whole job needs: - validate-dco - prepare-cross