ci: pin KAS validate/summary jobs to Linux self-hosted runner#43
Merged
Conversation
Bare `runs-on: self-hosted` also matches the org's macOS Hackintosh runners. When the container-based "Validate Yocto Layers" job lands there it fails in ~6s with `docker: command not found` (macOS runners have no Docker), producing a persistent red check on every PR. Pin both jobs to `[self-hosted, Linux, X64]` so they only run on the Linux runner (github-runner), which has Docker for the linux/amd64 yocto-ci-build container. Co-authored-by: Cursor <cursoragent@cursor.com>
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
Validate Yocto Layers(andValidation Summary) jobs use bareruns-on: self-hosted, which matches any org self-hosted runner — including the macOS Hackintosh runners (proxmox-macos-tahoe,macmini-2014-xcode).validatejob (imagedynamicdevices/yocto-ci-build:latest,--platform linux/amd64) is scheduled on a macOS runner it fails in ~6s withdocker: command not found, leaving a persistent red check on every PR (seen on python3-improv: self-healing BLE advertising watchdog (imx93-jaguar-eink) #38, python3-improv: fix missing claim token on Wi-Fi success #40, python3-improv: emit Device-Status JSON superset (net/time/sec) for imx93-jaguar-eink #41).[self-hosted, Linux, X64]so they only run on the Linux runner (github-runner), which has Docker.Test plan
KAS Build CIrun schedulesValidate Yocto Layerson the Linux runner (not macOS) and the Docker container starts.Validation Summaryruns and passes.Made with Cursor