Hi Guys,
I have plan A and plan B in bamboo . I want trigger plan B when plan A failed to do some roll back job. Is that possible or should I add any plugins?
Best Regards.
Hello @Wu.Allen,
You can try plugin I created to show how to create new trigger. It's not tested nor supported officially by Atlassian. Look at https://bitbucket.org/chystoprudov/bamboo-failtrigger-plugin/overview.
I'll be happy if it will solve your use case
Hi @Wu.Allen,
I don't think this is currently possible using existing dependencies mechanism or predefined triggers.
https://confluence.atlassian.com/display/BAMBOO/Setting+up+plan+build+dependencies
https://confluence.atlassian.com/display/BAMBOO/Triggering+builds
However, build triggers are now pluggable (since ~5.8 I think) and there might be a plugin that does what you are looking for. Unfortunately I don't know of any. And I'm not sure if implementing custom triggers in Bamboo is documented.
An alternative solution would be to add the rollback as a stage in the same build plan, if it's not very advanced. You could add some conditions to all tasks if they should or should not be executed (e.g. all logic can be done within a script task, which could just read a variable or look through artifacts produced by previous stages and decide what to do). But this seems like an ugly workaround, not what you're trying to achieve.
Cheers,
Marcin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi MO, As jenkins can do that with a plugin https://wiki.jenkins-ci.org/display/JENKINS/BuildResultTrigger+Plugin ,is there any plugin can be added into bamboo to do that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Like I said, it is possible to write such plugin, but I currently don't know of any plugin that can do that. You can create a feature request under https://jira.atlassian.com/projects/BAM. Also, you can try searching the Atlassian Marketplace: https://marketplace.atlassian.com/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.