Get CruiseControl descriptive errors

198 views Asked by At

My cruisecontrol runs two nant scripts and it builds by using msbuild. Msbuild is failing without giving any errors. Is there any way to get more error details? Below is how I have configured publishers.

<publishers>
            <email from="[email protected]" mailhost="stat-server" includeDetails="TRUE">
                <users>
....
</users>
2

There are 2 answers

0
CharithJ On BEST ANSWER

I can view the CruiseControl.net Build log through the web application "View Build Log" link. It gives all the details of the build process.

2
Rihan Meij On

I normally start of running the build scripts from the command line on your build server.

You can also run MSBuild with a verbosity switch, that increase the amount of debug information. That will at least give you a idea of where the problem lies, perhaps your cruise control server is fine.

msbuild.exe <buildFile.msbuild> /v:d