Skip to content

Commit

Permalink
github: bump ci timeout to 20 minutes
Browse files Browse the repository at this point in the history
The CI system is variously hitting the limits of the existing 15 minute
build mark; in particular, Windows seems to be consistently hitting ~14m
so the chance of a runner timing out gets high if the underlying load is
also high.

While I'm working on this, let's just (regrettably) increase the slack
on the timeout so that everyone else isn't disturbed.

Signed-off-by: Austin Seipp <[email protected]>
  • Loading branch information
thoughtpolice authored and martinvonz committed Feb 11, 2025
1 parent 404778c commit 61c3be6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
os: windows-2022
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.os }}
timeout-minutes: 15 # NOTE (aseipp): keep in-sync with the build.yml timeout limit
timeout-minutes: 15 # NOTE (aseipp): should be safe, because tests aren't run

name: Build binary artifacts
steps:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
# is a problem we should fix. in the mean time, this will make these flakes
# less harmful, as it won't cause builds to spin for multiple hours, requiring
# manual cancellation.
timeout-minutes: 15
#
# FIXME (aseipp, 2025-02-06): bumped to 20min.
timeout-minutes: 20

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Expand Down Expand Up @@ -103,7 +105,7 @@ jobs:
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-14]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
timeout-minutes: 20

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Expand Down

0 comments on commit 61c3be6

Please sign in to comment.