You could use the Project Trigger to configure depandancies but it
would be a little clunky to look at and to troubleshoot.

Basically you would need to start from C3 and get it to trigger C2,
which would in turn trigger C1 etc. Then by triggering a build on C3
your projects would be built in order. Not pretty but it should work.

If it was me - I would put all the projects in the same queue and
trigger them in order.

Hope this helps
Dave

On Apr 7, 1:36 pm, Helmut <[email protected]> wrote:
> If you always want them to execut from A1 to C3, just put them all in
> the same queue and they will execute in the order that you queue them.
>
> On Apr 6, 11:29 pm, CMF <[email protected]> wrote:
>
> > if I have many projects, says, [A1,A2,A3], [B1,B2,B3], [C1,C2,C3]
> > I want the projects sequence be
> > A1->A2->A3->B1->B2->B3->C1->C2->C3
>
> > But if I Trigger B1and C1 when A1 is undergoing
> > The sequence will be  A1->A2,B1,C1 ->A3,B2,C2->B3,C3
> > how can I solve it?
>
> > my config:
>
> > <queue name="Q1" lockqueues="Q2,Q3" />
> > <queue name="Q2" lockqueues="Q1,Q3" />
> > <queue name="Q3" lockqueues="Q1,Q2" />
>
> > A1 queue="Q1"
> > A2 queue="Q1"
> > A3 queue="Q1"
>
> > B1 queue="Q2"
> > B2 queue="Q2"
> > B3 queue="Q2"
>
> > C1 queue="Q3"
> > C2 queue="Q3"
> > C3 queue="Q3"

Reply via email to