You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
plan1 will run a set of tests. The plan will fail due to some tests failing.
plan2 will collect pass/fail status of tests run in plan1.
I would like plan1 to trigger plan2 regardless of failing status. Is this possible?
Hey Jared,
You could use the below plugin and setup a trigger on Plan 2 that triggers after Plan 1 failure:
You'd still need to maintain the dependency that is triggering Plan 2 after successful builds in addition to it.
If you wanted to rely on native Bamboo functionality only, I would suggest setting up a Script Task as a Final Task (gets executed even if previous jobs fail) in your plan that triggers Plan 2 via Bamboo's REST API.
E.g.
curl --user ${bamboo.username}:${bamboo.password} -X POST http://bamboo:8085/rest/api/latest/queue/PROJ-PLAN-KEY
I've also included the an existing feature request which is relevant to your requirement, if you'd like to keep tabs on it:
Hope this helps. :)
Cheers,
Jeremy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.