ci: Blacksmith runners followup#7198
Merged
PastaPastaPasta merged 1 commit intodashpay:developfrom Mar 3, 2026
Merged
Conversation
✅ No Merge Conflicts DetectedThis PR currently has no conflicts with other open PRs. |
be4edd5 to
7e2dd74
Compare
Use `vars.RUNNER_AMD64` and `vars.RUNNER_ARM64` repo variables to
select CI runners, with GitHub-hosted runners as fallback defaults.
On dashpay/dash, set these variables to Blacksmith runner labels for
faster builds. On forks (where the variables aren't set), CI
automatically falls back to standard GitHub-hosted runners with no
degradation.
Changes:
- build.yml: check-skip + all sub-workflow calls now explicitly pass
runs-on using ${{ vars.RUNNER_AMD64 || 'ubuntu-24.04' }} or ARM64
- build-container.yml: runner selection via vars with fallback
- build-depends.yml, build-src.yml, test-src.yml: defaults reverted
to ubuntu-24.04 (callers always pass explicitly now)
- cache-depends-sources.yml: vars with fallback
- lint.yml: vars with fallback
To enable Blacksmith on a repo, set these repository variables:
- RUNNER_AMD64=blacksmith-4vcpu-ubuntu-2404
- RUNNER_ARM64=blacksmith-4vcpu-ubuntu-2404-arm
7e2dd74 to
2ad94f9
Compare
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
Migrate the lint and depends-source-cache workflows to Blacksmith runners to keep the entire main CI pipeline on the same runner infrastructure. Fixes cache compatibility issues when build/test jobs run on Blacksmith but the cache-warming job runs on GitHub-hosted runners.
Changes
cache-depends-sources.ymlubuntu-24.04-armblacksmith-4vcpu-ubuntu-2404-armlint.ymlubuntu-24.04blacksmith-4vcpu-ubuntu-2404Companion to #7197 (build pipeline migration).