Run short CI jobs on the standard runner - #6541
Merged
Merged
Conversation
Every job in the PR and main suites runs on the paid 8-core runner, including jobs that finish in one to three minutes and spend most of that on checkout, toolchain setup and image pulls. Those steps do not scale with cores, and the standard runner is free for this public repository. Move Go lint, operator unit tests, operator build, MCP conformance and the six shortest E2E shards to the standard runner. The Go test job, Helm chart tests, operator integration and E2E jobs, the E2E binary build and the long E2E shards keep the large runner, since they are CPU-bound or sit on the critical path. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6541 +/- ##
==========================================
+ Coverage 78.69% 78.70% +0.01%
==========================================
Files 777 777
Lines 76797 76797
==========================================
+ Hits 60434 60443 +9
+ Misses 16358 16349 -9
Partials 5 5 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
JAORMX
approved these changes
Sep 8, 2026
aponcedeleonch
approved these changes
Sep 8, 2026
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
Every job in PR Checks and Main build runs on the paid
ubuntu-8cores-32gbrunner, including jobs that finish in one to three minutes and spend most of that on checkout, toolchain setup and image pulls. Those steps do not scale with cores. The standardubuntu-latestrunner is free for this public repository and has 4 vCPUs and 16 GB.Move the setup-dominated jobs to the standard runner and keep the large runner where cores or the critical path matter.
ubuntu-latestKept on the large runner: Go tests, Helm chart tests, operator integration and E2E, the E2E binary build (root of the E2E critical path), and the proxy, mcp-protocol, middleware, lifecycle, mcp-run, network-isolation and vmcp shards.
Expected saving: about 21 large-runner minutes per run, roughly $650 to $700 per month across PR and main runs.
Type of change
Test plan
actionlinton the three changed workflows with the repo's custom runner labels declared: clean.git diff --check: clean.Does this introduce a user-facing change?
No.
Special notes for reviewers
runs-on: ${{ matrix.runner || 'ubuntu-8cores-32gb' }}, so shards without arunnerfield are unchanged. Moving a shard back is a one-line revert on that entry.coreshard runs Ginkgo with four processes; the standard runner's four vCPUs cover that.Generated with Claude Code
🤖 Generated with Claude Code