Order of Forcebuild publisher in CruiseControl
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>
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.
精彩评论