fix: increase timeout for release builds from 30 to 60 minutes (#9242)
Windows builds have been tripping the 30 minute timeout. For sure, we
need to improve this, but as a quick fix, let's just increase the
timeout.
Perhaps we should switch to `lto = "thin"` for release builds, at least
for Windows:
3728db11b8/codex-rs/Cargo.toml (L288)
See https://doc.rust-lang.org/cargo/reference/profiles.html#lto for
details.
This commit is contained in:
parent
3728db11b8
commit
2a68b74b9b
1 changed files with 1 additions and 1 deletions
2
.github/workflows/rust-release.yml
vendored
2
.github/workflows/rust-release.yml
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
|||
needs: tag-check
|
||||
name: Build - ${{ matrix.runner }} - ${{ matrix.target }}
|
||||
runs-on: ${{ matrix.runner }}
|
||||
timeout-minutes: 30
|
||||
timeout-minutes: 60
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue