ceph-dev-cron: Convert to groovy, trigger ceph-dev-pipeline instead#2533
Merged
djgalloway merged 1 commit intomainfrom Feb 11, 2026
Merged
ceph-dev-cron: Convert to groovy, trigger ceph-dev-pipeline instead#2533djgalloway merged 1 commit intomainfrom
djgalloway merged 1 commit intomainfrom
Conversation
Contributor
djgalloway
commented
Jan 28, 2026
dmick
reviewed
Jan 29, 2026
Member
dmick
left a comment
There was a problem hiding this comment.
going to look at more but yeah, what's happening with the sha1 business would be a great framework for understanding the code
f133e9d to
ac175a8
Compare
dmick
reviewed
Jan 30, 2026
dmick
reviewed
Jan 30, 2026
Member
dmick
left a comment
There was a problem hiding this comment.
other than being worried about state management, this seems simple and now understandable with the comments
Contributor
Author
|
@zmc ping |
zmc
approved these changes
Feb 10, 2026
Member
zmc
left a comment
There was a problem hiding this comment.
This looks good to me, only have one non-blocking suggestion about log output.
| def winDistros = toks.findAll { it == 'windows' }.join(' ') | ||
|
|
||
| if (linuxDistros) { | ||
| echo "Triggering BRANCH=${b}, DISTROS=${linuxDistros}, FLAVOR=default, ARCH=x86_64" |
Member
There was a problem hiding this comment.
I think that if the log message mentions parameter values, we should also use them explicitly below, to avoid confusion if e.g. ceph-dev-pipeline defaults change.
Contributor
Author
There was a problem hiding this comment.
Fair enough, here's the only change in the force push
diff --git a/ceph-dev-cron/build/Jenkinsfile b/ceph-dev-cron/build/Jenkinsfile
index 1e391664..7420658a 100644
--- a/ceph-dev-cron/build/Jenkinsfile
+++ b/ceph-dev-cron/build/Jenkinsfile
@@ -121,11 +121,13 @@ node('built-in') {
def winDistros = toks.findAll { it == 'windows' }.join(' ')
if (linuxDistros) {
- echo "Triggering BRANCH=${b}, DISTROS=${linuxDistros}, FLAVOR=default, ARCH=x86_64"
+ echo "Triggering BRANCH=${b}, DISTROS=${linuxDistros}, FLAVORS=default, ARCHS=x86_64"
build job: 'ceph-dev-pipeline',
parameters: [
string(name: 'BRANCH', value: b),
string(name: 'DISTROS', value: linuxDistros),
+ string(name: 'FLAVORS', value: 'default'),
+ string(name: 'ARCHS', value: 'x86_64'),
string(name: 'CEPH_REPO', value: repoUrl),
string(name: 'SETUP_JOB', value: 'ceph-source-dist'),
booleanParam(name: 'FORCE', value: true)
@@ -134,11 +136,13 @@ node('built-in') {
}
if (winDistros) {
- echo "Triggering BRANCH=${b}, DISTROS=${winDistros}, FLAVOR=default, ARCH=x86_64"
+ echo "Triggering BRANCH=${b}, DISTROS=${winDistros}, FLAVOR=default, ARCHS=x86_64"
build job: 'ceph-dev',
parameters: [
string(name: 'BRANCH', value: b),
string(name: 'DISTROS', value: winDistros),
+ string(name: 'FLAVOR', value: 'default'),
+ string(name: 'ARCHS', value: 'x86_64'),
booleanParam(name: 'FORCE', value: true)
],
wait: false
@@ -146,7 +150,7 @@ node('built-in') {
// This block is for FLAVOR=debug and/or ARCHS=arm64
cfg[b].extras.each { ex ->
- echo "Triggering BRANCH=${b}, FLAVOR=${ex.flavors}, ARCH=${ex.archs}"
+ echo "Triggering BRANCH=${b}, FLAVORS=${ex.flavors}, ARCHS=${ex.archs}"
build job: 'ceph-dev-pipeline',
parameters: [
string(name: 'BRANCH', value: b),
Signed-off-by: David Galloway <david.galloway@ibm.com>
ac175a8 to
b766e0e
Compare
zmc
approved these changes
Feb 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.