ci: move lint/check jobs to free GitHub-hosted runners - #48
Closed
dhogaivannan wants to merge 1 commit into
Closed
Conversation
These 8 jobs ran on depot-ubuntu-latest (2 vCPU, billed). GitHub-hosted ubuntu-latest is free for public repos and gives 4 vCPU, so this is both cheaper and faster. The heavy test matrix in test.yml stays on Depot 16-core runners. An immediate side benefit: these jobs run again right away while the repo is disconnected from the Depot app, instead of queueing out after 10 minutes. Part of DO-322 (scope Depot usage to Monad releases).
Collaborator
Author
|
Folded into #47. |
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
Moves the 8 lint/check jobs in
ci.yml(doctest, no-default-features, typos, shellcheck, clippy, rustfmt, forge-fmt, crate-checks) fromdepot-ubuntu-latestto plainubuntu-latest. Part of Linear DO-322, alongside #47.Rationale:
depot-ubuntu-latestis the 2-vCPU Depot base runner and is billed per minute; GitHub-hostedubuntu-latestis free for public repos and provides 4 vCPU — strictly better on both axes for these jobs.test.ymlmatrix (nextest partitions, 16-core) intentionally stays on Depot.Notes for review
timeout-minutes: 30and use sccache/rust-cache, which work the same on GitHub-hosted runners (GHA cache backend). This PR's own CI run is the live test — if any of them brushes the 30-minute limit on 4 vCPU, the fallback is bumping that job's timeout or pinning just that job back to a Depot label.runs-onis the only thing changed: 8 lines, verified withactionlint(clean) and YAML parse.Verification