how to lock steps in buildbot
Asked Answered
N

1

3

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.

Naoma answered 6/2, 2011 at 15:40 Comment(0)
S
3

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 ...

Sil answered 4/3, 2011 at 9:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.