开发者

Order of Forcebuild publisher in CruiseControl

开发者 https://www.devze.com 2023-03-03 08:39 出处:网络
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?

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消