Hi,

I'm using the workflow plugin to do something like this:

node('small') {
  prologue();
}

node('full') {
  heavy_lifting();
}

node('small') {
 summary();
}



There are three distinct part of the build, all running on different nodes. 
I've also got several of these in flight at the same time, so many in fact 
that there is some resource contention over the nodes. When this happens I 
really want the oldest build to get a node allocated ASAP, but in reality 
any random build might actually get their node allocated to run. Is there 
any way that I can force priorities of which jobs get their nodes 
allocated? Or is there any other way to ensure that the three different 
steps gets run as soon as possible?

I'm on Jenkins 1.630.

Cheers,
Jim

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/48fe91e6-4950-40e8-b6f9-74abd991c56b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to