views:

50

answers:

2

I'm trying to do a branch build. I've just set it up and forced a build and all I'm getting, almost immediately after the build starts is that it failed.

Nothing even remotely helpful in this error. Just wondering if anyone has come across anything similar.

ThoughtWorks.CruiseControl.Core.CruiseControlException: Source control operation failed: . Process command: C:\Program Files (x86)\CollabNet Subversion Server\svn.exe update D:\WC40\SVN\\\ --non-interactive --no-auth-cache
   at ThoughtWorks.CruiseControl.Core.Sourcecontrol.ProcessSourceControl.Execute(ProcessInfo processInfo)
   at ThoughtWorks.CruiseControl.Core.Sourcecontrol.Svn.GetSource(IIntegrationResult result)
   at ThoughtWorks.CruiseControl.Core.IntegrationRunner.Build(IIntegrationResult result)
   at ThoughtWorks.CruiseControl.Core.IntegrationRunner.Integrate(IntegrationRequest request)
+3  A: 

Try increasing the log level in your cc.net configuration to see what's happening before the failure.

Assaf Lavie
+1  A: 

my guess is that you call the same repository simultaneously from 2 builds, svn is locked while it is getting the code and hangs... the solution is to use queues and priority:ccnet documentation

zzzuperfly
Or either there are several source control blocks. The ccnet config file could help.
Benjamin Baumann