Throttle Windows Bazel test concurrency#18192
Merged
starr-openai merged 2 commits intomainfrom Apr 16, 2026
Merged
Conversation
Limit the Windows Bazel test lane to 8 jobs to reduce local runner pressure, and make failed-test log tailing resolve paths using the same CI config and Windows host-platform context as the failed invocation. Co-authored-by: Codex <noreply@openai.com>
bolinfest
approved these changes
Apr 16, 2026
| fi | ||
|
|
||
| testlogs_dir="$(run_bazel "${bazel_info_cmd[@]:1}" info bazel-testlogs 2>/dev/null || echo bazel-testlogs)" | ||
| if [[ -n "${BUILDBUDDY_API_KEY:-}" ]]; then |
Collaborator
There was a problem hiding this comment.
Could you add a comment here...
| esac | ||
| done | ||
|
|
||
| testlogs_dir="$(run_bazel "${bazel_info_cmd[@]:1}" \ |
Collaborator
There was a problem hiding this comment.
...and here...
I have it on my backlog to convert this Bash script to Python because it takes way more mental energy than is appropriate to keep track of what is going on here.
Collaborator
|
Comments can be addressed in a subsequent PR. |
Document why failed-test log tailing runs bazel info with matching CI config and only selected post-config args. Co-authored-by: Codex <noreply@openai.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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
--jobs=8to reduce local runner pressurebazel-testlogswith the same CI config and Windows host-platform context as the failed invocationtest.logpaths and normalize Windows path separators before tailingContext
The Windows Bazel workflow currently uses
ci-windows, which does not inherit the remote executor config. This means the lane runs the//...test suite locally and otherwise falls back to the repo-widecommon --jobs=30. The new Windows-only override is intended to reduce local executor pressure without changing coverage.Validation
Not run locally; this is a CI workflow change and the draft PR is intended to exercise the GitHub Actions lane directly.