odez213
odez213

Reputation: 723

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>

Upvotes: 0

Views: 321

Answers (1)

Damir Arh
Damir Arh

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

Related Questions