Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/kas-build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ jobs:
# Validation job - validates Yocto layer compatibility
validate:
name: Validate Yocto Layers
runs-on: self-hosted
# Pin to a Linux self-hosted runner: bare `self-hosted` also matches the
# org's macOS runners, which have no Docker and fail this container job
# in ~6s with "docker: command not found".
runs-on: [self-hosted, Linux, X64]
container:
image: dynamicdevices/yocto-ci-build:latest
options: --privileged --platform linux/amd64
Expand Down Expand Up @@ -167,7 +170,7 @@ jobs:
# Summary job
summary:
name: Validation Summary
runs-on: self-hosted
runs-on: [self-hosted, Linux, X64]
needs: [validate]
if: always()

Expand Down
Loading