ci: Run self-hosted checks in ci-devel

The manually triggered CI only runs build checks on ubuntu-22.04, while required self-hosted checks run on ARM, s390x, and ppc64le.

Use the same runner instance matrix in ci-devel so its run can cover those required self-hosted checks when gatekeeper consumes manual results.

Generated-By: GitHub Copilot
Signed-off-by: Aurélien Bombo <abombo@microsoft.com>
This commit is contained in:
Aurélien Bombo
2026-07-24 15:25:52 -05:00
parent 8dd6c88819
commit 4dd74798c0

View File

@@ -43,6 +43,14 @@ jobs:
KBUILD_SIGN_PIN: ${{ secrets.KBUILD_SIGN_PIN }}
build-checks:
strategy:
fail-fast: false
matrix:
instance:
- "ubuntu-22.04"
- "ubuntu-24.04-arm"
- "ubuntu-24.04-s390x"
- "ppc64le"
uses: ./.github/workflows/build-checks.yaml
with:
instance: ubuntu-22.04
instance: ${{ matrix.instance }}