CruiseControl 中 Forcebuild 发布者的顺序
有没有一种方法可以命令强制构建发布者的执行,并等待前一个强制构建完成,然后再执行下一个强制构建?
<publishers>
<forcebuild>
<project>Project A</project>
</forcebuild>
<forcebuild>
<project>Project B</project>
</forcebuild>
<forcebuild>
<project>Project C</project>
</forcebuild>
</publishers>
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将项目放入同一个队列中并设置其优先级以排序正确。我从未在相同情况下使用过队列,但它应该具有预期的效果。
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.