Reputation: 723
Is there a way to order the execution of a force build publisher and wait for the prior forcebuild to finish up before executing the next one?
<publishers>
<forcebuild>
<project>Project A</project>
</forcebuild>
<forcebuild>
<project>Project B</project>
</forcebuild>
<forcebuild>
<project>Project C</project>
</forcebuild>
</publishers>
Upvotes: 0
Views: 321
Reputation: 17855
Try putting the project in the same queue and set their priorities to order the correctly. I've never used queues in the same situation but it should have the desired effect.
Upvotes: 2