Search Results

0
votes

How do I set the build number based on the Subversion revision number with CruiseControl.net

If you are wanting to change the build number in CC.Net, I believe you want to use a labeller block …
0
votes

Running Cruise Control .NET as a Service

Related to Frederik's response - On our server, we specify the subversion credentials in the project itself. The sourcecontrol block for one of these projects would look something like this: …
0
votes

Why Build Fails with CruiseControl.NET but it builds fine manually with same settings?

I've run into instances where my solution builds if I open it in the IDE and compile, but fails if I run from a command line (either msbuild or devenv.) In each case, the problem was due to a bad …
4
votes

UI Testing Framework + Continuous Integration ??

NUnitForms has a "hidden desktop" feature that will let you run unit tests from cc.net. …
0
votes

CruiseControl.Net complaining about xml

One thing to note - if you specify build tasks within the cruise control project, you don't have to specifically tell it to merge the output - it is handled automatically. One method of debugging …
0
votes

Missing dependencies when building through CruiseControl

You might check to see if the missing dlls are in the GAC on the build machine. I ran into an issue a few months back where the build server was generating an install with one fewer dll tha …
1
vote

TestFixtureSetUp failed occasionally while running through cc.net

Is it the same cc.net project being forced that is scheduled to run nightly? If not, there may be a difference in how they are configured. If they are the same, I would suggest adding some loggin …
0
votes

Process timeout without showing any error in test execution using cc.net

One possibility is that you have a permission issue. CruiseControl is perhaps running under a service account and has different permissions than your user account (which I'm assuming you use to ma …
0
votes

error MSB1009: Project file does not exist on running fromCruiseControl

Your sourcecontrol block appears to be placing the code in "C:\source\TestReports\ITRTests\ITRTests\ITRTests" (note the three levels of 'ITRTests') but the msbuild task has a working directory of " …
0
votes

Process Kill during execution of Nunit tests

Looks rather similar to another one of your questions. …
0
votes

How to Coordinate multiple builds in CruiseControl.Net?

CC.Net allows you to define more than one trigger on a single project. Perhaps you create two project triggers - one for Success and one for Failure. …
1
vote

Running NUnit task in CruiseControl.NET always throws errors

I see from the fusion logs that NUnit appears to have ShadowCopy enabled. In the past, I've run into issues with this turned on. It doesn't appear that the CruiseControl task allows switching this …
0
votes

Structure of NAnt build scripts and solution structure on build server

To answer your first question, I would recommend a separate top-level folder for each build project. The problem with having a single tree matching your source repository is that when your build se …
0
votes

CC.Net Access Denied Error

Is it possible that the virtual folder it is trying to create already exists? Another thought - when you run from a command line, it is possible you have different environment variables or drive m …
0
votes

cruisecontrol sourcesafe block

Are the Debug and Release builds running at the same time? If so, I could see one waiting for the other to finish. …