Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trigger a jenkins build from git using cloudbees and bitbucket

I'm trying to trigger a jenkins build automatically when i commit to my git repo. I am using a cloudbees jenkins instance and my repo is located at butbucket.

I configured the jenkins service on my bitbucket repo but it doesn't seem to start the build on jenkins. To configure it i've used the following:

Endpoint: https://<my-email>:<my-api-token>@myaccount.ci.cloudbees.com
Project name: <my-build-job-name>
Token: <my-token-name>

I have properly set up both the cloudbees SSH public key to bitbucket and verified that jenkins does build my project successfully when triggered manually. It doesn't seem to work however when i push changes to my repository.

I have followed the following tutorial: http://wiki.cloudbees.com/bin/view/DEV/Bitbucket

Has anyone managed to solve this?

like image 439
Lefteris Laskaridis Avatar asked Nov 01 '12 09:11

Lefteris Laskaridis


2 Answers

I also followed the CloudBees BitBucket Tutorial but what I found is that I had skipped a step as it had been in french.

The step was to check (in the Jenkins Configuration) the Trigger builds remotely (e.g., from scripts) checkbox and ensure that the Authentication Token given is the same Token that is given to the BitBucket Service. This, as the tutorial says, is where "the magic will occur".

like image 133
Dylan Watson Avatar answered Nov 09 '22 00:11

Dylan Watson


I wrote this doc about intergating bitbucket with jenkins on Cloudbees, but bitbucket don't officially support credentials on service hooks, and this doesn't seem to work for ALL accounts, even I can't tell why it sometimes fails. Cloudbees instance just never receive the notification http request with credentials set.

Maybe a bitbucket plugin would help, as we have for github and gitlab to manage commit hooks.

like image 36
nicolas de loof Avatar answered Nov 09 '22 02:11

nicolas de loof