I'm having some issues with jenkins and gerrit. We have some jobs that verifies changes on the master branch.
this is the configuration i have:
Git
URL of repository: ssh://jenkins_user@localhost:29418/project - Name of repository: Gerrit - Refspec: +refs/changes/:refs/remotes/origin/ - Branch Specifier: **
Execution Triggers
- Check Repository
- Scheduler: * * * * * (every minute)
Gerrit Integration
- Gerrit Host: localhost
- Gerrit Username: jenkins_user
- Private Key File Path : path_to_key/key_rsa
The problem is when we push multiple changes to the master branch
git push origin work:refs/for/master
jenkins does one build for each change, but it always build the last change.
This happens with 2 out of 3 jobs (each one belongs to different projects)