From b4a5721a2ce12a5ec80a251c6824ef8335c09722 Mon Sep 17 00:00:00 2001 From: DABH Date: Thu, 10 Sep 2026 11:49:51 -0500 Subject: [PATCH] Cap CI jobs at 30 minutes Without an explicit limit a hung job burns GitHub's 6-hour default timeout before failing; recent jobs finish in ~4 minutes, so 30 minutes is generous headroom while failing hangs fast. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72b8a31..d3bd90f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,7 @@ jobs: - os: ubuntu-arm runsOn: ubuntu-24.04-arm64-2-core runs-on: ${{ matrix.runsOn || matrix.os }} + timeout-minutes: 30 steps: - name: Print build information run: "echo head_ref: ${{ github.head_ref }}, ref: ${{ github.ref }}, os: ${{ matrix.os }}"