Skip to content

Instantly share code, notes, and snippets.

@lepffm
Last active October 8, 2019 06:39
Show Gist options
  • Save lepffm/5829fcd90c21d74cd537589cd47334b9 to your computer and use it in GitHub Desktop.
Save lepffm/5829fcd90c21d74cd537589cd47334b9 to your computer and use it in GitHub Desktop.
count build in all jenkins job
def MIN = 500 // minimum count
Jenkins.instance.getAllItems(AbstractProject.class).sort{ it.builds.size() }.reverse().findAll{ it.builds.size() > MIN }.each{
println it.absoluteUrl + "," + it.builds.size()
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment