Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Jenkins Plugin that allows you to manually manipulate the build queue

I'm looking for a Jenkins plugin that allows you to manually manipulate the build queue. The use cases are:

  • We have a number of build jobs that run and at certain points in our development cycle we would like to have some builds to have a higher priority.
  • When a build fails we want get it fixed as quickly as possible and therefore move it to the top of the build queue. (We don't want to cancel all the other builds in the queue)

While searching for this I have found the following plugin https://wiki.jenkins-ci.org/display/JENKINS/Priority+Sorter+Plugin but do not believe it will meet our needs since I do not know in advance which builds I want to give priority to.

Really I'm looking for a plugin that gives you the functionality to click and drag builds in the queue, like on TeamCity.

like image 360
kentsurrey Avatar asked Feb 07 '14 09:02

kentsurrey


1 Answers

The Accelerated Build Now plugin does this job. It will even cancel running jobs if no processor on any node is free.

like image 130
Cfx Avatar answered Sep 27 '22 18:09

Cfx