I'm using Bamboo to do automation build on Win 7. The trigger method is "Repository triggers the build when changes are commited".
If I use a Git server deployed in cygwin with ssh protocol. I can modify "post-receive" to make the trigger work well.
However, Stash does not support cygwin. And stash has its own Git server. Now I can't trigger Bamboo to build if new codes are checked in. Is there a way to make the auto-build happen?
Hi Zhe,
This feature is not yet available but we have a skeletal plugin described here that allows you to ping a URL after a push to the stash server.
Sorry that you will have to build the plugin youself which is kind of involving :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We bought Stash since we assumed that staying in the Atlassian family of products would be beneficial.
It's weak that you don't support Stash as a native trigger in Bamboo. Its your products after all!?
Should have rather hosted my code at Github or BitBucket instead.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Followup:
I installed the External Hooks plugin and then execute curl on the host to post to bamoo to trigger a plan.
This does not solve the issue of triggering builds for your plan's branch builds though. I'm considering to wrap curl in a script and accordingly fire a post to the relevant URIs depending on the commit. Will post a followup message here if I make progress on this.
Just a pointer for the external hooks plugin, each param should be on a new line.
A template to use:
--user <username>:<password> -X POST -d JOB1&ExecuteAllStages https://<bamboo url>/rest/api/latest/queue/<Project>-<Plan>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do this by installing the Stash Web Post Hooks Plugin (free and from Atlassian).
On each repository you can then configure this webhook to trigger a build using the REST API of Bamboo.
An example REST url for triggering a build:
http://bamboo.atlassian.com/bamboo/api/rest/updateAndBuild.action?buildKey=PROJECT-PLAN
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.