From 1e020215c54ddf3823989035341d6a801de10ddf Mon Sep 17 00:00:00 2001 From: Shraddha Agrawal Date: Fri, 10 Apr 2026 14:04:51 +0530 Subject: [PATCH] introduce debug builds for rocky10 This commit adds debug builds for rocky10. So far we are only building release builds for rocky10. Debug builds are helpful for testing, especially for crimson. Fixes: https://tracker.ceph.com/issues/75952 Signed-off-by: Shraddha Agrawal --- ceph-dev-pipeline/build/Jenkinsfile | 4 ++-- ceph-trigger-build/build/Jenkinsfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ceph-dev-pipeline/build/Jenkinsfile b/ceph-dev-pipeline/build/Jenkinsfile index 93c44e68..7ac9abb4 100644 --- a/ceph-dev-pipeline/build/Jenkinsfile +++ b/ceph-dev-pipeline/build/Jenkinsfile @@ -204,7 +204,7 @@ pipeline { values 'default', 'debug' } } - // debug flavor is currently only supported on centos9 x86_64 + // debug flavor is currently only supported on centos9 and rocky10, x86_64 excludes { exclude { axis { @@ -213,7 +213,7 @@ pipeline { } axis { name 'DIST' - notValues 'centos9' + notValues 'centos9', 'rocky10' } } exclude { diff --git a/ceph-trigger-build/build/Jenkinsfile b/ceph-trigger-build/build/Jenkinsfile index aeb20395..08fb43d3 100644 --- a/ceph-trigger-build/build/Jenkinsfile +++ b/ceph-trigger-build/build/Jenkinsfile @@ -58,7 +58,7 @@ def params_from_branch(initialParams) { if ( !singleSet ) { params << params[0].clone() params[-1]['ARCHS'] = 'x86_64' - params[-1]['DISTROS'] = 'centos9' + params[-1]['DISTROS'] = 'centos9 rocky10' params[-1]['FLAVOR'] = 'debug' } else { params[0]['ARCHS'] += ' arm64' @@ -78,7 +78,7 @@ def params_from_branch(initialParams) { if ( !singleSet ) { params << params[0].clone() params[-1]['ARCHS'] = 'x86_64' - params[-1]['DISTROS'] = 'centos9' + params[-1]['DISTROS'] = 'centos9 rocky10' params[-1]['FLAVOR'] = 'debug' } else { params[0]['FLAVOR'] += ' debug' -- 2.47.3