From 6eab7519b405c16c425f9e07163b542722f9da1c Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Wed, 29 Apr 2026 16:19:59 -0700 Subject: [PATCH] chore: increase release build timeout from 60 min to 90 (#20271) Build times are creeping up, so increase the timeout as a precaution. --- .github/workflows/rust-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-release.yml b/.github/workflows/rust-release.yml index d2c2cfdba..d79ea9e99 100644 --- a/.github/workflows/rust-release.yml +++ b/.github/workflows/rust-release.yml @@ -49,7 +49,10 @@ jobs: needs: tag-check name: Build - ${{ matrix.runner }} - ${{ matrix.target }} - ${{ matrix.bundle }} runs-on: ${{ matrix.runs_on || matrix.runner }} - timeout-minutes: 60 + # Codex binaries can take a long time to build, particularly on Windows. + # Ideally, this would be 60 minutes, but let's add some headroom because + # having to restart a release build due to a timeout is a major pain. + timeout-minutes: 90 permissions: contents: read id-token: write