ci: lift Bazel test timeouts on release runs - #468
Merged
Conversation
The release workflow runs bazel test //... on one cold runner, and //tests:e2e_test hit the enormous 3600s cap on v44.0.0. Keep per-size timeouts on PRs; raise them to GitHub's 6h job limit for releases. Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
release_rulesetstep runsbazel test //...on a single cold runner. On v44.0.0 that killed//tests:e2e_testat theenormous3600s cap (TIMEOUT in 3600.0s) and skipped attest/publish/binaries..bazelrctest:no-test-timeoutsconfig (--test_timeout=21600, GitHub's 6h job ceiling) and pass it viabazel_test_commandinrelease.yaml.Test plan
bazel test //tools:benchmark_test --config=no-test-timeouts --announce_rcreportstest:no-test-timeouts ... --test_timeout=21600and the test passesv44.0.0tag so the Release workflow checks out a commit that includes this fix, then confirmrelease / buildgets past TestMade with Cursor