What I'm trying to do here is to perform some sort of SVN action using the credentials that Hudson has stored in it.
E.g.
- Start a build of project Foo
- Project Foo starts a shell script
- Shell script performs a tag of the current source for project Foo using the credentials set in Hudson
- Build continues
Now I know there are various tagging plugins but these aren't quite what I want since the tagging is dependent on options for the build rather than on the build success. I can script the thing just fine but it all falls down when running under Hudson as svn copy won't work without the required credentials - hence the need to access the one that Hudson has already used to checkout the project.
sudo -u hudson svn info $repo_urland let svn store the credentials. – Dave Bacher Feb 9 '11 at 5:36