I currently have a CruiseControl.Net/SVN setup which allows me to trigger a release build by making a Tag, from Trunk. The problem arises when I try to make a Tag from a Branch. I receive the following message:
<exception><![CDATA[ThoughtWorks.CruiseControl.Core.CruiseControlException: Could not located an added directory in the specified trunk directory in this set of modifications.
at ThoughtWorks.CruiseControl.Core.sourcecontrol.SvnTag.CheckoutSource(IIntegrationResult result) in c:\workspace\projects\mss-tools\CruiseControl.NET\project\core\sourcecontrol\SvnTag.cs:line 45
at ThoughtWorks.CruiseControl.Core.IntegrationRunner.Build(IIntegrationResult result) in c:\workspace\projects\mss-tools\CruiseControl.NET\project\core\IntegrationRunner.cs:line 123
at ThoughtWorks.CruiseControl.Core.IntegrationRunner.Integrate(IntegrationRequest request) in c:\workspace\projects\mss-tools\CruiseControl.NET\project\core\IntegrationRunner.cs:line 78]]></exception>
Intermittently, the build will actually trigger, delayed anywhere from 15 minutes to hours later. Agagin, these problems are none existent when tagging from Trunk.
Also, our configuration has the following section and I cannot find any documentation for the type svntag (is it a plugin?):
<sourcecontrol type="svntag">
<trunkUrl>http://....../tags</trunkUrl>
<workingDirectory>C:\build\tags</workingDirectory>
<username>...</username>
<password>...</password>
<autoGetSource>false</autoGetSource>
</sourcecontrol>
Any help would be very much appreciated. Thanks, Harry