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?
You have to do a few things to build exactly each revision:
REVISION
string parameter to your job${REVISION}
parameter to the repository URL,https://server/path/myproject${REVISION}
REVISION
variable is only expanded in the URL, but when creating the folder, Hudson will not expand it, resulting in a folder named: myproject${REVISION}
/usr/bin/wget \
--auth-no-challenge \
--no-check-certificate \
--user=me \
--password=mypasswd \
https: //server/path/job/jobname/buildWithParameters?delay=0sec\&REVISION=%40$REV \
-O /dev/null
If you want to trigger a build manually, you have two possibilities:
The @
sign is very important because all this trick relies on the fact that Subversion plugin interprets URL@NNN
as get revision NNN from repository at URL
. If you forget the @
, Subversion will just say it can't find folder https://server/path/myprojectNNN
. That's also why you have to put %40
between REVISION=
and $REV
in the wget command, %40
is the escaped character for @
.
Hudson does not yet have this capability, but its been asked for a few times on the mailing list. See issue 673
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With