'GitLab 7.4.2 webhooks does not trigger job in jenkins
I need help with trigger action on push events from gitlab to jenkins:
I follow all the instructions in https://github.com/jenkinsci/gitlab-plugin/wiki/Setup-Example, with no success. When I make a commit to my repo nothing happens. The webhook I created seems to be fine, a test it and response OK, but not fire jenkins job.
I'm using GitLab 7.4.2 and Jenkins 2.73.1.
Solution 1:[1]
Consider how the webhook listener is declared in Jenkins:
If the webhook does fire, but nothing happens, that means the listener does not work (double-check the Jenkins logs to make sure there is no event relative to said webhook)
Change your webhook URL to one generated by webhook.site (or requestb.in, or write your own using ngrok, in order to validate that you are able to receive the webhook.
Note: GitLab 7.4.2 seems ancient, so it is possible that some bugs might have been fixed since then (GitLab 10.0.2).
For instance, issues 34143 and 22515.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | VonC |

