Setting up dependencies / triggers in bamboo?
I am wondering if I can get some help with regards to Bamboo. I am very new to this system.
I can make plans, etc., but now I need to automate 1 of those plans instead of manually disabling it.
Unlike other plans, I cannot leave this time. As it depends on 2 other plans finishing the first
The plan is currently configured
Plan 1 must pass and complete and Plan 2 must pass and complete (Both are already activated by the set time)
Then we can run plan 3 (it is necessary to check that both plan 1 and plan 2 are completed and passed)
So my question is, is there a way to automate the plan so that it follows the conditions above
Please note that the plan should only be executed after both plans are completed, not just when
Any help you can give would be great
source to share
The dependency tree is usually set up as a parent, running one or more child plans.
In this case, you could set three plans for a sequential build - plan 1 completion triggers schedule 2 and plan 2 completion triggers plan 3. The drawback is the longer total build time, and plan 2 will not be built if plan 1 exits building.
Dependencies are configured on the Dependencies tab in the Scheduling configuration. The parent launches the children. In advanced settings, you can set up blocking strategies to stop child assemblies starting at the end of parental controls.
More information is available on the bamboo addiction help page
source to share