Skip to content

Instantly share code, notes, and snippets.

@trancerelaxer
Forked from sasjo/drain_jenkins.groovy
Created September 21, 2020 10:26
Show Gist options
  • Save trancerelaxer/240dabd5b5b192179a810b987be4e4de to your computer and use it in GitHub Desktop.
Save trancerelaxer/240dabd5b5b192179a810b987be4e4de to your computer and use it in GitHub Desktop.
Drain Jenkins build queue and stop all running jobs
Jenkins.instance.queue.items.findAll { !it.task.name.contains("Extenda") }.each {
println "Cancel ${it.task.name}"
Jenkins.instance.queue.cancel(it.task)
}
Jenkins.instance.items.each {
stopJobs(it)
}
def stopJobs(job) {
if (job in jenkins.branch.OrganizationFolder) {
// Git behaves well so no need to traverse it.
return
} else if (job in com.cloudbees.hudson.plugins.folder.Folder) {
job.items.each { stopJobs(it) }
} else if (job in org.jenkinsci.plugins.workflow.multibranch.WorkflowMultiBranchProject) {
job.items.each { stopJobs(it) }
} else if (job in org.jenkinsci.plugins.workflow.job.WorkflowJob) {
if (job.isBuilding() || job.isInQueue() || job.isBuildBlocked()) {
job.builds.findAll { it.inProgress || it.building }.each { build ->
println "Kill $build"
build.finish(hudson.model.Result.ABORTED, new java.io.IOException("Aborted from Script Console"));
}
}
}
}
return true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment