vote up 0 vote down star

Our repository has a structure like this:

Dev
    Project1
        source
        docs
        ...
    Project2
        source
        docs
        ...
    ...

After we commit changes to Project1 sources we would like to deploy Project1 (compile, test, copy, etc.). How to find out in post-commit-hook that we commited to Dev/Project1 so we could export this project and run some tasks on it? When commiting to svn (e.g. using TortoiseSVN) ir is written: "Commit to: ..." How to find that "commit to"?

flag

33% accept rate
A single commit can change more than one project. For subversion, there is nothing special about project folders. – wcoenen Oct 14 at 14:19

2 Answers

vote up 1 vote down check

You should use

svnlook changed -r REV REPOPATH

in a post-commit hook. SVN will provide REPOPATH and REV as arguments. You get a list with all changed paths back(new line separated). You can then easily use grep or anything else to search for the changed paths.

Remember: start a new thread for building/deploying, as svn will wait until post-commit hook has finished(so you will not see "Committed Revision XX" until everything is deployed).

link|flag
Ok, when I get all changed paths, how do I find base "Project"? And how to start new thread for deploying in post-commit hook? – Sazug Oct 14 at 9:51
You can check the path with a regular expression. Add a "&" to the command which starts the deployment (works only on Unix servers) – Peter Parker Oct 14 at 10:28
We are using Windows :) – Sazug Oct 14 at 10:33
you should use some script language as post-commit-hook, as perl, python or vbscript. I do not know how to start another thread, but it should be easily possible in windows – Peter Parker Oct 14 at 13:43
To start another thread you should use the "start" command as last line in you batch script: "start test_deploy.bat" – Peter Parker Oct 14 at 13:51
show 2 more comments
vote up 1 vote down

I would recommend using a continuous integration server like CruiseControl.NET over using a post commit hook for integration tasks.

These tools can easily monitor your repository for changes below specific urls, but they don't have to be run with the same privileges as your subversion server. In particular they can never corrupt your repository. You can just run them on any (old) server, while you can run your repository on a more prominent/stable/backed up server.

link|flag
you are right, Continuous Integration is the better solution (+1 for this) for his problem, however, I referred directly to his headline and his question. – Peter Parker Oct 14 at 17:58

Your Answer

Get an OpenID
or

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