user3021914
user3021914

Reputation: 143

Run Jenkins build when git commit is done

I know that this question is posted in different topic.But my case is a little bit different.

I want to trigger my test goal when a commit is detected by Jenkins. Most tutorials in the internet show how to do this using WebHook.

In my case I have two problems :

1) I did not find the option "Trigger build when a commit is detected"

enter image description here

2) All tutorials speak about configuring webhook, from Git URL.in my case, my git repository is local and I did not have access to the web interface. So how to do the same thing manually ?

Thank ou in advance

Configuration :

Upvotes: 5

Views: 27035

Answers (1)

CodeWizard
CodeWizard

Reputation: 141946

You do it in a little bit different way:

You do use a web-hook to capture when new git commit was made and in the hook you start the Jenkins job with the rest API.

https://wiki.jenkins-ci.org/display/JENKINS/Remote+access+API

Read all about it in here:

http://kohsuke.org/2011/12/01/polling-must-die-triggering-jenkins-builds-from-a-git-hook/

Upvotes: 3

Related Questions