cruisecontrol.net

Make QA Drops of Only Selected Builds In CruiseControl.Net

CC.Net is creating many builds for us each day. Occasionally we do a bit of manual smoke testing and then a build becomes a QA drop (or release candidate if you prefer). QA drops are just copied to a remove server. I'd like to automate the execution of the qa-drop-copy nant script, against an existing successful build. How can I do t...

ccnet and svn:external authentication

Hi, I've just set up ccnet to pull my code from svn, this is working fine except in my /lib folder i have an svn:external to another repos (googlecode) which has different authentication credetials to the repos ccnet is pulling from. How do i tell ccnet the user/pass for the external? If this is not possible what can I do? My external...

CruiseControl.NET: Displaying generated files as part of the build history

I have a rake task running on CC.NET that generates HTML test reports. I'd like these test reports to be stored against each build and be accessible from the CC.NET website when looking at the details of the build. Is there a way of doing this or do you know of another continuous integration server that can do this? ...

Can I keep CruiseControl.Net's ccnet.config in svn, then have CruiseControl update its own config file when a change is checked in?

I'd like to be able to keep our CruiseControl.Net's ccnet.config file in svn, then when I check in a change, ie, I've added a new project, it will update itself. This way I have the config file under source control and I can track the changes being made. I do realize that I could check in a change that will screw up CruiseControl to a ...

CruiseControl.NET build project with VSS

I am trying to get a build going for a client that pulls from VSS 2005 (yes, I have no choice). I am pretty sure I have all my configuration correct, but I keep getting this error: Source control operation failed: $/Utilities/Orbital Gateway/Solution Architecture/Release Construction/Payment Subsystem/Services/PaymentService is not an ex...

Targetting different Frameworks using MSBuild gives problems with dependencies.

I have a little project, and I want to have 2 compiled versions of that project: one that is targetting the .NET 2.0 framework one that is targetting the .NET 3.5 framework All is going well; I've put my project under continuous integration (using CC.NET), and I've created 2 CC.NET 'projects'. One project for each target-framework. ...

Use CCTray 1.2 to connect to ccnet 1.0

Hi, Is it possible to use CCTray 1.2 to access older Cruise Control .Net 1.0? I was thinking it should be possible to use the "Supply custom HTTP URL" option, but I don't know how to configure it. ...

How to inline SVG in CruiseControl.NET reports?

I am trying to embed inline SVG within custom CruiseControl.NET reports. Since this is for internal use only, I just need a solution compatible with the last version of Firefox. Actually inserting the SVG XML into a custom CruiseControl.NET report is OK. But, but I am struggling with the HTML vs XHTML interpretation of the file by Firef...

Failing NUnit test when running through CC.NET

The solution for this error has escaped me for several days now, and it is time to come here for help. The short version is, I have a unit test that fails on the build server but no other environment. The method I'm testing is an extension method for ILog in log4net. The purpose of this extension method is to make a debug log of the cur...

CC.Net authentication

I use CruiseControl.Net for my project. Is it possible to configre authentication? I'd like only registered user to be able to force a build. Regards christian. ...

CI: Hudson with .Net vs CruiseControl.Net

I work for a .net shop looking to integrate a CI server. From what I've seen, Hudson seems to be the most popular choice. Considering we are a .net only shop, will Hudson present any hurdles that CC.NET will not? ...

CruiseControl.Net complaining about xml

I inherited an existing project with a failing build. I can see the exception in the ccnet.log file: Exception: System.Xml.XmlException: Name cannot begin with the '%' character, hexadecimal value 0x25. Line 17, position 100. at System.Xml.XmlTextReaderImpl.Throw(Exception e) at System.Xml.XmlTextReaderImpl.Throw(String res, Strin...

Stop CruiseControl.NET auto build

Hi I have CruiseControl.NET setup with SVN source control. I have all my projects working perfectly, builing and deploying to my different staging environments. However, CC.NET automatically starts building whenever a commit is made to the project in SVN. We want to build on demand, not automatically all the time, because all our buil...

What should go in an MSBuild Script except compilation?

I'm currently trying to set up CruiseControl.net, and so I wonder how to split up my Tasks. Generally, I want to run Unit Tests (xUnit.net), Help File Generation (Sandcastle) and FxCop. Now I just wonder if I should specify a new Target in the msbuild config ("Documentation") and use that to run SandCastle, or if that belongs in a sepa...

using CruiseControl.Net and SVN

I am trying to use cruisecontrol.net to check a svn repositry for an update and then exports the updated project. I am new to cruisecontrol and not sure how to do this. Any help would be great. ...

msbuild and cruiscontrol.net

Hi, I am trying to call a batch file insdie cruisecontrol and all the batch file does it calls msbuild on a .sln C# project. I can't get this to work and I get the following error : 'msBuild' is not recognized as an internal or external command Any ideas?? Thanks ...

Getting CC-Tray to work

I am trying to get cc-tray to work instead of using the web dashboard. I'm not sure how I can get the correct url for the server that my cruisecontrol is running on and I can't find any useful documentations online. Can anyone help? Thanks ...

Why Does CruiseControl.NET need to be restarted after GetCcNetConfigFiles?

CruiseControl.NET service needs to be restarted to pick up changes in the projects configuration files. I find this very annoying, not sure if it's a bug or it's the way it works. Is there any way to overcome this issue in people's experience? ...

WCF Automated Deployment

I am in the process of setting up some IIS hosted WCF projects for continuous integration and am stuck trying to find the best and simplest way to get deployment automated. Right now, I have the build and deploy working with CC.NET, MSBUILD and a batch file that copies the necessary files to the deployment folder, but I think there must...

How to Coordinate multiple builds in CruiseControl.Net?

I have a scenario where in I need to define multiple msbuild tasks. I added a projectTrigger but the problem is that you need to specify the triggerStatus to success or failure. I need the build to be happen irrespective of whether the preceeding build succeeds or fails. What is the best solution for this? ...