up vote 0 down vote favorite
share [g+] share [fb]

I've installed CruiseControl.net for the first time and I'm having trouble getting my solution to build. It is strange because it builds in VS2008 just fine. I've got a very simple config file with this MSBuild task:

      <msbuild>
        <executable>C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe</executable>
        <projectFile>MySolutionFile.sln</projectFile>
        <buildArgs>/noconsolelogger /p:Configuration=Debug /v:diag</buildArgs>
      </msbuild>

There are no errors or warnings displayed when I look at the build report, but it does say in red that "This project doesn't have any tests". I don't know whether this is causing the build to fail.

Thanks, John

link|improve this question

45% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I generally have to read through the nant scripts and CC.Net config file to figure out what checks are being performed and troubleshoot these problems. I would bet that there is something that is looking for successful tests. If you are using Cruise Control for the fist time, you might want to check out CI Factory first. It uses Cruise Control as part of it's "suite" of build management tools.

link|improve this answer
feedback

Try building it via the command line msbuild first eg.

C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe MySolutionFile.sln /p:Configuration=Debug

Once youve got it wotrking like that then host it in CCnet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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