PROBLEM:   I need to build a project with certain parameters which then 
kicks of various other projects.  I then need to build the same first 
project with a different set of parameters as  soon as the full build 
pipeline finishes from the original build. 

eg: 

project1 with first set of parameters: 
    project2: 
        project3: 
        project4: 
            project5: 
                project6: 
        project7: 
project1 with second set of parameters: 
    project2: 
        project3: 
        project4: 
            project5: 
                project6: 
        project7: 

Note that all children projects depend on parameters passed down from 
project1 and that due to lack of hardware, I cannot build the two different 
project1's in parallel. 

QUESTION:  How do I accomplish top level builds that spawn of a plethora of 
children projects and then be able to spawn another top level build when 
the current top level build, and all children builds including project6 
from my example, has finished? 

Reply via email to