Skip to content

Instantly share code, notes, and snippets.

@VictorCabello
Created September 16, 2015 14:55
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VictorCabello/77a3f9191a299ec22dec to your computer and use it in GitHub Desktop.
Save VictorCabello/77a3f9191a299ec22dec to your computer and use it in GitHub Desktop.
Jenkins script to list all views and their content
Jenkins.instance.views.each {
view ->
println "${view.name}"
view.items.each {
item ->
println "\t- ${item.name}"
}
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment