From 4dd74798c03e2ea8958332576ae8da1116b26dab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bombo?= Date: Fri, 24 Jul 2026 15:25:52 -0500 Subject: [PATCH] ci: Run self-hosted checks in ci-devel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/ci-devel.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-devel.yaml b/.github/workflows/ci-devel.yaml index 0c06a48b47..bc898dc47e 100644 --- a/.github/workflows/ci-devel.yaml +++ b/.github/workflows/ci-devel.yaml @@ -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 }}