vote up 2 vote down star

I've started experimenting with Hudson as a build server. I'm using subversion and have it configured to poll every minute. The issue I'm seeing is that if a build at revision 10 takes 5 minutes and there are 5 commits during that time, Hudson will next build revision 15.

Is there a way to ensure every revision is built?

flag

50% accept rate
1  
You have to take care that this wont cause performance problems for Hudson. For example, if you have commits happening every few seconds, whereas a hudson build takes a few minutes. Soon you will flood the build queue. – toolkit Jun 4 at 7:57
For the life of me, I can't see why this could be needed. Why would something other than the current state of the codebase be important? – sal Jun 10 at 16:25
1  
Hi sal, the reason for this is testing. We aim to put each revision through a regression test. So if we are not building each revision, we are not testing each revision. This causes issues if rev n is working but rev n+10 isn't and we didn't test any of the revisions between. Which change caused the regression? – CodeBuddy Jun 11 at 6:52

2 Answers

vote up 2 vote down check

Hudson does not yet have this capability, but its been asked for a few times on the mailing list. See issue 673

link|flag
vote up 2 vote down

In SCM part of build configuration you should have Build Triggers section and option "Trigger builds remotely (e.g., from scripts)". According to help info next to that option you can script post-commit action so every commit would fire new build. As hudson has build's queue you should have every revision built.

Here's a link that could help you: https://hudson.dev.java.net/build.html

Here's example how to start build job with parameters (see to my comment for details): http://wiki.hudson-ci.org/display/HUDSON/Parameterized+Build

link|flag
Not sure that'll work directly - the first commit will trigger a build, then 3 commit trigger 3 further builds before the 1st finishes. Unfortunately, the second build in the queue will then do an update and build the latest version - as will the following builds. What's needed to to be able to pass a revision number to the build request and have that number used during the update. – Jim T Jun 4 at 8:34
1  
You're right, I haven't thought about that obvious scenario. But as I've seen in hudson documentation it is possible to invoke build job with parameters so you could define build string parameter RevisionToBuild and set it from the script like that: "server/job/myjob/…; and of course properly modify svn repository path to use that parameter. – grapkulec Jun 4 at 9:36
But you can make the build queue just one job deep (for a given build executor set the "# of executors") and this will get the result you're after...even if parallel builds would be faster. – MattyT Aug 6 at 1:49

Your Answer

Get an OpenID
or

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