build: GitHub Builder runner mappings#25086
Merged
Merged
Conversation
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
6ef9438 to
ef98c43
Compare
thaJeztah
reviewed
May 18, 2026
|
|
||
| ### Runner selection | ||
|
|
||
| The `runner` input accepts either a single GitHub-hosted Linux runner label or a |
Member
There was a problem hiding this comment.
Is there a page we could link to in the GitHub docs that shows the available labels?
Member
Author
There was a problem hiding this comment.
Yes there is https://docs.github.com/en/actions/reference/runners/github-hosted-runners#supported-runners-and-hardware-resources and https://github.com/actions/partner-runner-images/#available-images but not sure about linking to these pages though 🤔
dvdksn
reviewed
May 18, 2026
Comment on lines
+48
to
+61
| newline-delimited platform mapping. A single label is used for every platform: | ||
|
|
||
| ```yaml | ||
| runner: ubuntu-24.04 | ||
| ``` | ||
|
|
||
| The default value is a platform mapping that uses GitHub-hosted Ubuntu runners: | ||
|
|
||
| ```yaml | ||
| runner: | | ||
| default=ubuntu-24.04 | ||
| linux/arm=ubuntu-24.04-arm | ||
| linux/arm64=ubuntu-24.04-arm | ||
| ``` |
Contributor
There was a problem hiding this comment.
Suggest we re-order this to show the default first, and what it resolves to after.
Suggested change
| newline-delimited platform mapping. A single label is used for every platform: | |
| ```yaml | |
| runner: ubuntu-24.04 | |
| ``` | |
| The default value is a platform mapping that uses GitHub-hosted Ubuntu runners: | |
| ```yaml | |
| runner: | | |
| default=ubuntu-24.04 | |
| linux/arm=ubuntu-24.04-arm | |
| linux/arm64=ubuntu-24.04-arm | |
| ``` | |
| newline-delimited platform mapping. | |
| The default value is a platform mapping that uses GitHub-hosted Ubuntu runners: | |
| ```yaml | |
| runner: | | |
| default=ubuntu-24.04 | |
| linux/arm=ubuntu-24.04-arm | |
| linux/arm64=ubuntu-24.04-arm | |
| ``` | |
| In the platform job, the runner label resolves to a single value: | |
| ```yaml | |
| runner: ubuntu-24.04 | |
| ``` |
Member
Author
There was a problem hiding this comment.
Yes sounds better indeeed
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
ef98c43 to
e79ee7e
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.
follow-up docker/github-builder#188
The reusable workflows now accept either a GitHub-hosted Linux runner label or a newline-delimited platform mapping, while the legacy
auto,amd64, andarm64values are deprecated.