Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a git repository hosted on BitBucket, and have set up SSH authentication between the repository and my Jenkins server. I can build on Jenkins manually, but cannot get the Jenkins service on BitBucket to trigger builds.

Jenkins configuration:
- Project Name: [my_jenkins_job]
- Build Triggers:
--Trigger Builds Remotely:
---Token: [token]

BitBucket configuration:
- Endpoint: http://[my_jenkins_address]/job/[my_jenkins_job]/build (I've also tried build?token=[token])
- Project Name: [my_jenkins_job]
- Module Name: [blank]
- Token: [token]

Visiting http://[my_jenkins_address]/job/[my_jenkins_job]/build?token=[token] kicks off a build properly.

Can anyone see anything wrong with my configuration? Why doesn't pushing to BitBucket cause Jenkins to initiate a build?

Thanks for any assistance!

share|improve this question

4 Answers

up vote 1 down vote accepted

I have our Jenkins instance set up to poll the repository every minute. Is that not frequent enough for your needs?

Our Jenkins configuration:

Build Triggers > Poll SCM = Checked

Build Triggers > Poll SCM > Schedule =

# every 1 minute
*/1 * * * *
share|improve this answer
This totally works for our situation, thanks! But... does anyone use the service? – Allen T. Jun 27 '12 at 17:39

The token stuff is useless if you use authentication in Jenkins.

use the Git plugin, and use a POST hook with http[s]://your.site.com[/jenkins]/git/notifyCommit?url=git@bitbucket.org:your-username/your-repo.git in it. Be sure that polling is on and schedule at some value, or this won't work.

share|improve this answer

You can actually get this to work in Jenkins with the Bitbucket service, but it took some playing around to get it working.

If you use authentication, you can grab an API token from one of the users that can create builds. I created a separate account just for Bitbucket. You'll need at least Jenkins 1.426 to use the API token. You can then use HTTP authentication with the API token as your password for the Bitbucket service.

This is how mine is set up:

Endpoint: http://[bitbucket]:[APITOKEN]@[www.example.com/jenkins/]

Project Name: [NameOfMyJenkinsProject]

Module Name: [empty]

Token: [Token found in Jenkins project settings]

After I set it up like this, I was able to use the token as well as authentication to enable push-triggered builds from Bitbucket.

share|improve this answer

I've tried to use both bitbucket's POST service and Jenkins service but has not been able to make it work.

For my jenkins job I've configured POST service with url https://jenkins_user:jenkins_password@my.server.com:8443/jenkins/job/MyJob/build?token=myJenkinsJobToken. I guess the problem is with self-signed certificate I am using on my server. It is mentioned in Troubleshooting Bitbucket Services.

Is there any workaround for this?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.