开发者

how to lock steps in buildbot

I have a builder which consists of steps A, B, and C; and a second builder which consists of steps U, V, and W: How can I '开发者_开发知识库block' step U until steps A and B are finished? So basically I want that steps C and U run parallel to each other.

My first idea was to introduce two interlocks, a and b: step A demands lock a, step B demands lock b, and step U demands a and b at the same time.

But in this situation the execution order is A->U->B, and not A->B->U as I want it to be. The reason: steps are greedy for locks. Step U is blocked because of lock a, but despite that it requires lock b. And this blocks step B until step U is finished.


Try using a Triggerable scheduler for your builder which performs steps U,V,W. In the first builder add a step Trigger after "B" and before "C". This should bring you the desired behaviour ...

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜