On our CC.NET continuous integration server, I have implemented a Start Update hook script that works fine when I check out the source using TortoiseSVN. The hook script is meant to clean the working copy of all unversioned files before each build. However, when the build is executed, and the source gets updated, the hook script is not run.

How can I tell CruiseControl.NET to honor my hook scripts? We are using CC.NET 1.4.4.49. Thanks in advance for any assistance on this.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You have basically setup a TortoiseSVN client side Start Update hook whereas the CC.Net would use a command line SVN client. CC.Net would have no knowledge of the hook you have setup. You can probably setup the cleaning of the unversioned files as a step in your build in CC.NET.

link|improve this answer
Oh, client-side hooks are a proprietary feature to TortoiseSVN, and not a part of Subverison? – BasedAsFunk Jun 13 '11 at 22:00
2  
@MetalSearGolid - yeah, it is specific to TortoiseSVN. stackoverflow.com/questions/2916098/svn-client-side-hook – manojlds Jun 13 '11 at 22:01
I ended up just putting the script in CC.NET, which works just as well. – BasedAsFunk Jun 14 '11 at 0:46
feedback

Your Answer

 
or
required, but never shown

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