Use right-sized runner tiers for infra workflows#2023
Merged
mattgodbolt merged 1 commit intomainfrom Mar 12, 2026
Merged
Conversation
Assign runner size labels to match actual workload needs: - install.yml: small (8 vCPU) -- just downloads pre-built tarballs - consolidate.yml: medium (16 vCPU) -- mksquashfs is genuinely multi-threaded - adhoc-command.yml: size dropdown (default small) -- most ad-hoc commands are lightweight - bespoke-build.yaml: size dropdown (default large) -- full compiler compilations 🤖 Generated by LLM (Claude, via OpenClaw)
mattgodbolt
approved these changes
Mar 12, 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
Assigns runner size labels to four infra workflows based on their actual resource needs, now that ce-ci supports small (8 vCPU) and medium (16 vCPU) tiers alongside the existing large (32 vCPU) runners.
small: downloads pre-built tarballs from S3, ~2 min, no compilationmedium: runsmksquashfswith zstd, genuinely multi-threadedsmall): most ad-hoc commands are lightweightlarge): full compiler compilations need all coresFor the dropdown workflows, selecting
largegives the original unlabeled behavior (any available runner). Selectingsmallormediumroutes to the appropriately sized fleet.Depends on compiler-explorer/ce-ci#18 -- the small and medium runner fleets must be deployed before this takes effect.