forked from samrocketman/jenkins-script-console-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist-all-root-projects-by-view.groovy
46 lines (40 loc) · 1.13 KB
/
list-all-root-projects-by-view.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import hudson.model.Job
import hudson.plugins.git.GitSCM
import hudson.scm.NullSCM
import hudson.scm.SCM
import jenkins.model.Jenkins
import org.jenkinsci.plugins.multiplescms.MultiSCM
void printSCM(Job j, SCM scm) {
switch(scm) {
case NullSCM:
println " ${j.displayName} has no SCM configured."
break
case GitSCM:
println " ${j.displayName} -> ${scm.repositories[0].URIs[0]}"
break
case MultiSCM:
scm.configuredSCMs.each { s ->
printSCM(j, s)
}
break
default:
throw new Exception("SCM class not supported: ${scm.class}")
break
}
}
j = Jenkins.instance
discovered_jobs = [].toSet()
Jenkins.instance.views.findAll { v ->
v.displayName != j.primaryView.displayName
}.each { v ->
println v.displayName
v.items.each { j ->
discovered_jobs << j
printSCM(j, j.scm)
}
}
println "Jobs under primary view '${j.primaryView.displayName}' not covered by other views"
((j.primaryView.items as Set) - discovered_jobs).each { j ->
printSCM(j, j.scm)
}
null