Dear All
My Bamboo plan has more than one SVN Repository.
Is it possible to pass the customRevision value per repository to the "/queue rest api"?
※ "/queue rest api" specification has only one customRevision.
Help me..
Best Regards
Hi, I found this Atlassian Cummunity post: [https://community.atlassian.com/t5/Bamboo-questions/Is-there-a-way-to-specify-a-revision-number-to-update-to-when-a/qaq-p/380844].
It provides this as a solution (example revision number 63781):
curl -X POST http://{bambooBaseURL}/ajax/runParametrisedManualBuild.action?os_authType=basic&planKey=MYCHANGSETBUILD&customRevision=63781
You may give it a try. Hope it makes the trick for you!
Cheers, Gerhard
Thank you for your kind reply.
My problem is that one plan has more than one REPO and I want to pass the REVISION for each REPO through the "/ QUEUE REST API".
a plan - a1 repo
- a2 repo
- a3 repo
I want set a1, a2, a3 customRevision.
Is it possible in the way you told me?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't believe it'll work like that, but just for one SVN repo.
I found another Atlassian Community post that comes up with another idea which I give more chance to work as you need it. Base is to not utilize a Bamboo "Source Checkout Task" but instead a "Script Task" to retrieve SVN sources.
From there you might do the below, 3 times, for repo a1, a2 and a3 respectively:
targetRevisionX=${bamboo.repository.revision.number}
svn co repoUrl -r $targetRevisionX
You'd need to think about thing like authentication of your repoUrl that you get automatically by use of the "Source Checkout Task", just as a heads up.
The Community article is here: https://community.atlassian.com/t5/Bamboo-questions/Is-there-a-way-to-specify-a-revision-number-to-update-to-when-a/qaq-p/380844
Hope this helps you better!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, same post, but further down. Too close to weekend ;-)
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.