From b251daf616064fe538e61f9a0c7102d1e7a12792 Mon Sep 17 00:00:00 2001 From: Shreeya Patel Date: Tue, 10 Mar 2026 12:17:40 +0000 Subject: [PATCH 1/2] github-actions: Add KernelCI support to CBR Allow callers to skip the kselftests stage entirely. Useful for CBR (RHEL 7) where kselftest coverage is minimal due to the old kernel. - Add skip_kselftests boolean input (default: false) - Gate test-kselftest and compare-results jobs on !skip_kselftests - Allow create-pr when kselftest result is 'skipped' - Skip kselftest log downloads and stats when kselftests are skipped Signed-off-by: Shreeya Patel --- .container_build_image | 2 ++ .../workflows/kernel-build-and-test-multiarch.yml | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .container_build_image create mode 100644 .github/workflows/kernel-build-and-test-multiarch.yml diff --git a/.container_build_image b/.container_build_image new file mode 100644 index 0000000000000..4d0f9f597c5a9 --- /dev/null +++ b/.container_build_image @@ -0,0 +1,2 @@ +cbr-7.9-kernel-builder + diff --git a/.github/workflows/kernel-build-and-test-multiarch.yml b/.github/workflows/kernel-build-and-test-multiarch.yml new file mode 100644 index 0000000000000..e7e3678c03bca --- /dev/null +++ b/.github/workflows/kernel-build-and-test-multiarch.yml @@ -0,0 +1,14 @@ +name: Automated kernel build and test x86_64 & aarch64 + +on: + push: + branches: + - '*_ciqcbr7_9' + +jobs: + kernelCI: + uses: ctrliq/kernel-src-tree/.github/workflows/kernel-build-and-test-multiarch.yml@main + with: + architectures: 'x86_64' + skip_kselftests: true + secrets: inherit From 7c79c55393940d71f9c095c6ade3df247bc42e8b Mon Sep 17 00:00:00 2001 From: Shreeya Patel Date: Tue, 24 Mar 2026 13:26:02 +0000 Subject: [PATCH 2/2] testing Signed-off-by: Shreeya Patel --- .github/workflows/kernel-build-and-test-multiarch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kernel-build-and-test-multiarch.yml b/.github/workflows/kernel-build-and-test-multiarch.yml index e7e3678c03bca..af581ef2e034e 100644 --- a/.github/workflows/kernel-build-and-test-multiarch.yml +++ b/.github/workflows/kernel-build-and-test-multiarch.yml @@ -7,7 +7,7 @@ on: jobs: kernelCI: - uses: ctrliq/kernel-src-tree/.github/workflows/kernel-build-and-test-multiarch.yml@main + uses: ctrliq/kernel-src-tree/.github/workflows/kernel-build-and-test-multiarch.yml@shreeya_kernelci_multiarch with: architectures: 'x86_64' skip_kselftests: true