Created
May 5, 2017 04:56
-
-
Save amosshapira/1185dee8f74bc65fbd0f85638b996159 to your computer and use it in GitHub Desktop.
Delete all tasks in Jenkins queue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hudson.model.* | |
def q = Jenkins.instance.queue | |
q.items.findAll().each { q.cancel(it.task) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment