We use Subversion for source control along with Maven for dependency management/ release preparation and Hudson as the CI server. The maven release prepare does the release tagging and creates a new tag in SVN. I would like to run the deploy job in Hudson off the latest tag (by default) and off other tags on demand.

Is there a way to get the latest SVN tag information in Hudson and pass it to a parameterized job.

Thanks

link|improve this question

74% accept rate
feedback

1 Answer

up vote 0 down vote accepted

It should be possible, provided you add a build action which list the tags of your svn repo, using svn switch, and svn ls:

svn switch http://your/svn/repo/tags/'svn ls http://your/svn/repo/tags | tail -n 1' repo

You will find other options in the SO question "Automating builds from subversion tags"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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