The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

bamboo spec in specific branch

Diego Prieto
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 4, 2018

Good morning

I have a problem with Bamboo specs YAML.
The existing documentation is quite poor and I'm trying to make a certain plan run only if there is a commit on a specific branch (for example development) because if the commit runs on another (master) I want to launch a different plan.

How can I do it?

Thank you very much.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Steve Thornhill
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 4, 2018

Have you defined a separate section for that branch in the yaml file?

 

  branches:
    staging:
      - step:
Diego Prieto
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 4, 2018

Hi Steve.

 

Thanks for your reply.

I dont know how to do it. Could you provide me a little bit example?

 

Thanks a lot

Steve Thornhill
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 4, 2018

Something along the lines of this will get you started

pipelines:
default:
-step:
name: Default stuff for non named branches
script:
- npm install
- npm test
branches:
branch1:
-step:
name: Run on Branch 1
script:
- echo "Running this on Branch 1"
- npm install
- npm test
branch2:
-step:
name: Run on Branch 2
script:
- echo "Running this on Branch 2"
- npm install
- npm test
Ibrahiem Mohammad
May 1, 2019

Hi Steve, do you know how the above would look like in Java Specs? I am trying to find an example or the right commands with the Specs API but nothing yet.

TAGS
AUG Leaders

Atlassian Community Events