From 17eb80e049f170120f7c0c0abfc1798a12b28700 Mon Sep 17 00:00:00 2001 From: Gleb Chesnokov Date: Fri, 6 Jun 2025 11:22:20 +0300 Subject: [PATCH] nightly build: Add RHEL 10 kernel support Add AlmaLinux 10.0 kernel to nightly build configs and update helper scripts to handle AlmaLinux 10.0 package sources. --- .github/workflows/run_regression_tests.yaml | 1 + nightly/conf/nightly.conf | 1 + scripts/rhel-rpm-functions | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_regression_tests.yaml b/.github/workflows/run_regression_tests.yaml index 3a85f0e65..65e4d7720 100644 --- a/.github/workflows/run_regression_tests.yaml +++ b/.github/workflows/run_regression_tests.yaml @@ -35,6 +35,7 @@ jobs: '4.9.337', '3.18.140', '3.10.108', + '6.12.0-55.9.1.el10_0^AlmaLinux^10.0', '5.14.0-570.12.1.el9_6^AlmaLinux^9.6', '5.14.0-503.40.1.el9_5^AlmaLinux^9.5', '5.14.0-427.42.1.el9_4^AlmaLinux^9.4', diff --git a/nightly/conf/nightly.conf b/nightly/conf/nightly.conf index 0fa92c466..8f1011ff9 100644 --- a/nightly/conf/nightly.conf +++ b/nightly/conf/nightly.conf @@ -70,6 +70,7 @@ ABT_KERNELS=" \ 3.12.74-nc \ 3.11.10-nc \ 3.10.108-nc \ +6.12.0-55.9.1.el10_0^AlmaLinux^10.0-nc \ 5.14.0-570.12.1.el9_6^AlmaLinux^9.6-nc \ 5.14.0-503.40.1.el9_5^AlmaLinux^9.5-nc \ 5.14.0-427.42.1.el9_4^AlmaLinux^9.4-nc \ diff --git a/scripts/rhel-rpm-functions b/scripts/rhel-rpm-functions index c42294651..b7f535f7f 100644 --- a/scripts/rhel-rpm-functions +++ b/scripts/rhel-rpm-functions @@ -37,7 +37,7 @@ function get_srpm_urls() { ;; "AlmaLinux") case $releasever in - [89]*) + [89]*|10*) echo "https://repo.almalinux.org/vault/${releasever}/BaseOS/Source/Packages/";; esac ;; @@ -97,7 +97,7 @@ function get_rpm_urls() { echo "";; "AlmaLinux") case $releasever in - [89]*) + [89]*|10*) echo "https://mirror.yandex.ru/almalinux/${releasever}/BaseOS/${arch}/os/Packages/";; esac ;;