From: Shraddha Agrawal Date: Fri, 10 Apr 2026 08:34:51 +0000 (+0530) Subject: introduce debug builds for rocky10 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2567%2Fhead;p=ceph-build.git 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 --- 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'