I have my projects splitted, I want to have a master project that will
trigger all the build sequence, and a final project that will be
executed when all the projects are built.

This must be done using Force Builder Publisher no Project Trigger

i.e.

- Master
    - Proj1
        - Proj1.1
    - Proj2
        - Proj2.1
    - Proj3
        - Proj3.1
            - Proj3.1.1
- Final

Master will trigger Proj1, Proj2 and Proj3 in parallel. Once they are
completed they will trigger their first level children and so on. Once
Proj1.1, Proj2.1, Proj3.1 and Proj3.1.1 Succeeds Final should be
forced, only once.

I was able to achieve this using queues (one queue for Master and
Final, one for each proj and children) however Final project is
executed once for each proj queue.

I have to use different queues since it is not possible to start
projects in parallel in the same queue.

Is this possible? Thanks

Reply via email to