开发者

Enforcing one build for one commit in Jenkins/Hudson

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?


Not yet, there's a Feature Request covering this kind of build, but it's still open: Issue 673


Maybe it misses the point, but we have a pretty nice build process running here.

  • We use git as our source control system
  • We use gerrit as our review tool
  • We use the gerrit trigger to run builds on our jenkins server
  • We check for changes on the develop branch to run jenkins when a changeset is merged

In short the ideal developer day is like this

  1. developer 1 stars a new branch to do his changes, based on our main develop branch
  2. The developer 1 commits as often as he likes
  3. developer 1 thinks he finished his job, he combines his changes into one change and pushes it to gerrit
  4. A new gerrit change is created and jenkins tries to build exactly this change
  5. When there are no errors during the build, a review is made on this change
  6. When the review is submited, the changeset is merged into the develop branch of the main repository (No change is merged into the develop branch, without review)
  7. Jenkins builds the merged version to be sure, that there are no merge errors

no developer 2 joins the party and tries to do some work

the process is exactly the same both start working, in there branches. Developer 1 is faster and his changes are merged into the develop branch. Now, before developer 2 can publish his changes he has to rebase his changes on top of the changes made by developer 1.

So we are sure, that the build process is triggered for every change made to our codebase.

We use this for our C# development - on windows not on linux


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).


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.


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: Quiet Period Feature.


As pointed out by someone in Issue 673 you could try starting a parametrized build with the parameter being the actual git commit you want to build. This in combination with a VCS commit hook.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜