Queue Priority in CruiseControl.NET
continuous-integration, cruisecontrol.net
Solution
This is not possible with CruiseControl.NET - each queue is seperate, so they all run independently. The only exception to this is using the lockqueues property - but this does not allow setting the priority.
Problem
In my build configuration I have multiple project queues: ``` Queue1, Queue2, ... Queue(N) ``` I want to configure the build where I can set the priority of when each queue builds: ``` Queue1 = Priority of 2, Queue2 = Priority of 1 ... ``` which produces the queues being built in the following order: ``` Queue2, Queue1 ... ``` How can I accomplish this in CruiseControl.NET?