Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ceph-dev-cron/build/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ node('built-in') {
tentacle: [
distros: 'noble jammy rocky10 centos9 windows',
extras : [
[distros:'centos9 rocky10', flavors:'debug', archs:'x86_64']
[distros:'centos9 rocky10 noble', flavors:'debug', archs:'x86_64']
]
],
umbrella: [
distros: 'noble rocky10 centos9 windows',
extras : [
[distros:'centos9 rocky10', flavors:'debug', archs:'x86_64']
[distros:'centos9 rocky10 noble', flavors:'debug', archs:'x86_64']
]
],
main: [
distros: 'noble jammy rocky10 centos9 windows',
extras : [
[distros:'centos9 rocky10', flavors:'debug', archs:'x86_64'],
[distros:'centos9 rocky10 noble', flavors:'debug', archs:'x86_64'],
[distros:'centos9 rocky10', flavors:'default', archs:'arm64'],
]
]
Expand Down
4 changes: 2 additions & 2 deletions ceph-dev-pipeline/build/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ pipeline {
values 'default', 'debug'
}
}
// debug flavor is currently only supported on centos9 and rocky10, x86_64
// debug flavor is currently only supported on centos9, rocky10 and noble, x86_64
excludes {
exclude {
axis {
Expand All @@ -210,7 +210,7 @@ pipeline {
}
axis {
name 'DIST'
notValues 'centos9', 'rocky10'
notValues 'centos9', 'rocky10', 'noble'
}
}
exclude {
Expand Down
4 changes: 2 additions & 2 deletions ceph-trigger-build/build/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def params_from_branch(initialParams) {
if ( !singleSet ) {
params << params[0].clone()
params[-1]['ARCHS'] = 'x86_64'
params[-1]['DISTROS'] = 'centos9 rocky10'
params[-1]['DISTROS'] = 'centos9 rocky10 noble'
params[-1]['FLAVOR'] = 'debug'
} else {
params[0]['ARCHS'] += ' arm64'
Expand All @@ -78,7 +78,7 @@ def params_from_branch(initialParams) {
if ( !singleSet ) {
params << params[0].clone()
params[-1]['ARCHS'] = 'x86_64'
params[-1]['DISTROS'] = 'centos9 rocky10'
params[-1]['DISTROS'] = 'centos9 rocky10 noble'
params[-1]['FLAVOR'] = 'debug'
} else {
params[0]['FLAVOR'] += ' debug'
Expand Down