We have an automated build system configured using Jenkins, integrate with Gerrit. One of the bottlenecks today is that it takes ~3.5 minutes for Jenkins to complete a "git clone" for each build, due to repository size. The same check-out using "git archive" takes approx 12 seconds.

Can the gerrit plugin for Jenkins be configured to use "git archive"? This will significantly reduce our build time.

link|improve this question

A quick scan of the git plugin source code says "no", since I believe it's what does the cloning, rather than the Gerrit Trigger plugin. However, possibly of benefit is the git plugin's "Fast remote polling" option (under Advanced) -- though I'm not sure if that saves you an initial clone. – Christopher Oct 2 '11 at 23:22
As far as I know the common git plugin only pull changes. A complete clone seems just oversized. However, even for a clone 3 minutes seems too much. Make sure you don't use http: as protocol (and such) – KingCrunch Oct 2 '11 at 23:26
It currently does a clone for each checkout - 3 minutes seems like a long time but it's > 5 years of history in the repository and 300+ MB per checkout. – jthompson Oct 2 '11 at 23:43
Do you really need a new clone for each build? Or does Jenkins clone and you just don't know why? We also use Jenkins and Gerrit and Jenkins just fetches the change from Gerrit, and doesn't clone the whole repository. – dunni Oct 7 '11 at 14:28
No - I do not need a clone or any Git history at all (see my answer below). Jenkins does a clone and I did not know why, although it appears to be part of the Git SCM plugin. – jthompson Oct 7 '11 at 15:52
feedback

1 Answer

up vote 0 down vote accepted

Although it doesn't appear to be possible using an unmodified version of the Git plugin, I did accomplish this in two steps:

1) Change SCM to "None" for the particular job.
2) Add a build step at the beginning to checkout using "git archive"

Here is a sample for step 2).

git archive --format=tar --remote=git://host/repo ${GERRIT_REFSPEC} > ${BUILD_ID}.tar && tar xvf ${BUILD_ID}.tar && rm ${BUILD_ID}.tar
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.