Can Hudson's parameterized configuration override svn version?

I would like to configure the ability to rebuild from a specific version. The default is HEAD, and the user can rebuild the old assembly (which has been removed). I would still like to use all hudson reports regarding SVN, etc.

Is there a good way to do this?

+4
source share
3 answers

What would I try. Unfortunately, I do not have time to test my approach.

A quick way is to use the parameter and leave it blank if you want to go to the head. To check for an obsolete version, enter "@" plus the version number as the parameter value.

You just need to add this parameter to the url for your subversion check. I am not sure of the correct syntax. I suspect this is something like ${Parameter_Name} .

Let us know if this works.

+4
source

Have you tried the Subversion Release Manager plugin? Looks like what you are looking for.

+3
source

I made a request: http://issues.hudson-ci.org/browse/HUDSON-4412

but he did not go anywhere.

The way we do this is to call the script SVN.EXE to get the required revision. You can pass the revision identifier as the SVN.EXE parameter.

+2
source

All Articles