How do I ask Hudson to build a specific revision (in开发者_如何学Cstead of the latest one)? I am using Mercurial in case that's relevant.
Under the Hudson project's Mercurial configuration, you can try putting the revision you'd like to build into the Branch field. (And if that doesn't work create a branch based on that revision.)
More generally, if you want the ability to build a revision that you specify at build time, you can configure a parameterized build that uses the user-specified revision parameter in the Branch field. The Mercurial Plugin claims to support parameters in the Branch field (as of version 1.26).
[Disclaimer: I don't have the setup to try this myself. So it's an educated guess.]
I am not sure if this will help in your case(Hudson), Normally if we want to build a specific revision we update to that revision build it. You can update to a revision by:
hg update -r <revision>
That update the repo to given revision and you can run your build commands
or if you don't want to do build inside the repo you can archive it and build out side the repo
hg archive -r <revision>
hg help archive
精彩评论