We use Jenkins for doing incremental builds of our project on each commit to the SCM. We would like to get separate builds for every single commit. However, the naive approach (setup SCM and use post-commit hooks to trigger a build) exhibits problem in the following scenario:

  • Build is triggered.
  • While build takes place (it can take up to several minutes) two separate commits to the SCM are made by two developers.
  • One new build is triggered. It receives changes from both of the commits, made during previous build.

This "race condition" complicates finding which one of the commits has broken the build/introduced warnings.

The currently employed solution is checking for changes in one job ("scheduler job") and triggering another job to do the actual checkout and build.

Are there any proper solutions to this problem?

link|improve this question
feedback

4 Answers

Not yet, there's a Feature Request covering this kind of build, but it's still open: http://issues.hudson-ci.org/browse/HUDSON-673

link|improve this answer
Thanks for the link to the bug report. – Oleg Jul 12 '11 at 9:11
feedback

If you use the rule "NO COMMIT on a broken build‏" and take it to it's logical conclusion, you actually end up with "No commit on a broken build or a build in progress", in which case the problem you describe goes away.

Let me explain. If you have two developers working on the same project and both of them try to commit (or push if you're using DVCS). One of them is going to succeed and and they other will fail and need to update before the commit.

The developer who had to do the update knows from the commit history, that the other commit was recent and thus a build in progress (even if it hasn't checked out yet). They don't know if that build is broken yet of not, so the only safe option is to wait and see.

The only thing that would stop you from using the above approach is if the build takes so long, in which case you might find that your developers never get a chance to commit (it's always building). This is then a driver to split up your build into a pipeline of multiple steps, so that the Post Commit job takes no more than 5 minutes, but is ideally 1 minute.

link|improve this answer
feedback

I don't believe what you'd like to do is possible. The "quiet period" mentioned by Daniel Kutik is actually used to tell Hudson/Jenkins how much time to wait, in order to allow other commits to the same project to be picked up. Meaning -- if you set this value to 60 seconds and you've made a commit, it will wait for a minute before starting a new build, allowing time for other commits to be picked up as well (during that one minute).

link|improve this answer
I'm assuming that he has set a quiet 'high' quiet period. If he decreases the quiet period time the likelihood that two builds get 'merged' is also decreased. – Daniel Kutik Jul 12 '11 at 7:07
@Daniel Kutik: Yes, indeed. However, this does not really help in this case. – carlspring Jul 12 '11 at 7:15
@Daniel Kutik: No, the quiet period is set to zero and we tried both setting once-per-minute SCM polling and triggering the builds via URL. In both cases, several triggers are merged into one. – Oleg Jul 12 '11 at 9:22
Like I said, this is not supported. – carlspring Jul 12 '11 at 9:39
feedback

I think what might help, is to set the Quiet Period (Jenkins > Manage Jenkins > Configure System) to 0 and the SCM Polling to a very short time. But even during that short interval there could be two commits. As of now Jenkins does not have the feature to split build into single builds on multiple SVN commit.

Here is a tutorial about that topic: http://jenkins-ci.org/content/quiet-period-feature

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.