Skip to content

Instantly share code, notes, and snippets.

@jimklimov
Created February 5, 2025 17:30
Show Gist options
  • Save jimklimov/940742b4ed756e070095199e0335ca13 to your computer and use it in GitHub Desktop.
Save jimklimov/940742b4ed756e070095199e0335ca13 to your computer and use it in GitHub Desktop.
Exploratory Groovy to list GIT sources of MBP Jobs
Jenkins.instance.getAllItems(org.jenkinsci.plugins.workflow.job.WorkflowJob).each { def project ->
//def flow = project.getDefinition()
//println "=== ${project.fullName}" // + " => ${flow} => ${flow.getDescriptor()}"
// + " - " + project.properties
def brProp = project.getProperty(org.jenkinsci.plugins.workflow.multibranch.BranchJobProperty.class)
def br = brProp?.getBranch()
def brScm = br?.getScm()
//println " * ${brScm && brScm instanceof hudson.plugins.git.GitSCM ? brScm.getScmName() : brScm} => ${br?.getName()} => ${br?.getHead()} => ${br?.getSourceId()}"
if (brScm && brScm instanceof hudson.plugins.git.GitSCM) {
def scmSource = project.getParent()?.getSCMSource(br.getSourceId())
if (scmSource && scmSource instanceof jenkins.plugins.git.GitSCMSource) {
println "=== ${project.fullName}"
println " * ${scmSource.getRemote()} => ${br?.getName()}"
}
}
/*
project.getSCMs().each { def scm ->
println " * ${scm}"
if (!(scm instanceof hudson.plugins.git.GitSCM)) {
println " ** WARNING: Not GitSCM"
return
}
hudson.plugins.git.GitSCM gitScm = (hudson.plugins.git.GitSCM)scm
println " ** ${gitScm.getScmName()} => ${gitScm.getLocalBranch()}"
}
*/
/*
if (!(flow.class in [org.jenkinsci.plugins.workflow.cps.CpsScmFlowDefinition, org.jenkinsci.plugins.workflow.multibranch.SCMBinder]))
println " * WARNING: Not CpsScmFlowDefinition nor SCMBinder"
if (flow instanceof org.jenkinsci.plugins.workflow.multibranch.SCMBinder) {
println " * SCMBinder => ${flow.readResolve()}"
}
flow.getSCMs().each { def scm ->
println " * ${scm}"
if (!(scm instanceof hudson.plugins.git.GitSCM)) {
println " ** WARNING: Not GitSCM"
return
}
hudson.plugins.git.GitSCM gitScm = (hudson.plugins.git.GitSCM)scm
println " ** ${gitScm.getScmName()} => ${gitScm.getLocalBranch()}"
}
*/
}
/*
Jenkins.instance.getAllItems(org.jenkinsci.plugins.workflow.multibranch.WorkflowMultiBranchProject).each {it ->
println it.fullName;
}
*/
/*
Jenkins.instance.getAllItems(AbstractItem.class).each {
if (it.class in [com.cloudbees.hudson.plugins.folder.Folder, org.jenkinsci.plugins.workflow.job.WorkflowJob, org.jenkinsci.plugins.workflow.multibranch.WorkflowMultiBranchProject, hudson.model.FreeStyleProject])
return // continue
println it.fullName + " - " + it.class
};
*/
/*
[ //com.cloudbees.hudson.plugins.folder.Folder,
org.jenkinsci.plugins.workflow.job.WorkflowJob,
org.jenkinsci.plugins.workflow.multibranch.WorkflowMultiBranchProject,
//hudson.model.FreeStyleProject
].each {def clazz ->
println "=== ${clazz}"
Jenkins.instance.getAllItems(clazz).each {
println " * " + it.fullName + " - " + it.class
}
}
*/
true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment