Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to have a stage in a Bamboo plan start even though the previous one has failed?

Tags:

bamboo

I have a Bamboo plan configuration with several stages. Now I want to have these stages to execute in certain order, but independently of the result of the previous stage.

This seems to be impossible with Bamboo. Subsequent stages are executed only if the previous one is successful.

Any thoughts?

like image 523
babbata Avatar asked Jan 12 '12 14:01

babbata


1 Answers

"Now I want to have these stages to execute in certain order, but independently of the result of the previous stage."

The statement seems self contradicting. If you want the stages to execute in order, that implies some dependency/coupling between them. Yet you want them to execute independently of the result of the previous stage.

The they are truly independent you can configure them as independent jobs as part of one stage. These jobs(which may contain several ordered tasks) will execute independently and in parallel.

Please see the following for more details:

http://quickstart.atlassian.com/download/bamboo/get-started/bamboo-elements

Hope this helps other who stumble upon this question.

like image 156
MickJ Avatar answered Oct 13 '22 11:10

MickJ