I have a GIT repository. When I pushed a GIT change into Gerrit, it triggers a jenkins build and if successful, it merges the code to the GIT repository.

But, Jenkins is building the source from GIT repo always. It is not picking the change pushed into Gerrit.

What settings should I change in Gerrit/Jenkins ?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 2 down vote accepted

In the jenkins configuration for the git Source Code Management section, click the advanced button and set your refspec to $GERRIT_REFSPEC which will pick up the change set that was commit.

link|improve this answer
It worked ! Thanks a lot ! – user691197 Feb 20 at 13:10
you're welcome. – Mark Fisher Feb 20 at 14:32
Hi Mark, I still have one more issue. Jenkins build doesn't show the correct change details in the "changes' field of the status page. I tried to add the $GERRIT_SUBJECT_NAME variable in the source code mgmt->Advanced-> name field. But I still see the old changes name. I'm pretty sure that it is building the correct source code, but the 'changes' field is showing the previous change's name. Please suggest me a solution to this too. – user691197 Feb 22 at 19:34
I haven't had to configure that, and it works fine here. All I have configured is the "Git" option for Source Code Management, the URL of repository is "git://localhost/my_repo.git", where I have an xinetd.d/git entry to allow the jenkins machine to not have to log into gerrit, but instead access a git-daemon that connects to the gerrit repo. In the advanced tab, I have set the name of the repo to "origin", and the refspec to $GERRIT_REFSPEC. I've not had to change anything with the plugin either in jenkins config. – Mark Fisher Feb 23 at 9:46
Its working. Only one my first build, it showed the wrong change details. But, from the next build, I'm seeing the correct ones. – user691197 Feb 24 at 9:03
show 1 more comment
feedback

There's a great tutorial about setting up git-gerrit-jenkins here that I used.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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