Questions tagged [cruisecontrol.net]

CruiseControl.NET is a .NET-based framework for supporting a continuous build process. It includes, but is not limited to, plugins for email notification, Ant, and various source control tools.

CruiseControl.NET is a .NET-based framework for supporting a continuous build process. It includes, but is not limited to, plugins for email notification, Ant, and various source control tools. CruiseControl.NET is a port of the Java-based CruiseControl.

A web interface is provided to view the details of the current and previous builds. It allows one to perform a continuous integration of any software development process.

CruiseControl.NET is free, open-source software, distributed under a BSD-style license. It was originally created by employees of ThoughtWorks to allow for continuous integration on a project they were working on. It was later extracted into a stand-alone application.

Resources

Related tags

1384 questions
13
votes
4 answers

How to use MsTest in Continuous Integration without VS?

My problem is quite simple, I have a CI server which runs msbuild and mstest. The problem is that the Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll doesn't exist (and I thinks other files related to mstest...) if we don't install VS in…
13
votes
4 answers

Can a master jenkins run jobs on remote jenkins?

We are migrating from CruiseControl.NET to Jenkins just to be in sync with a partner so we don't have two different CI scripts. We are trying to setup Jenkins to do something similar to what we had CruiseControl doing which was have a centralized…
Andy Arismendi
  • 50,577
  • 16
  • 107
  • 124
12
votes
4 answers

CruiseControl.NET and Git

It looks like there is no built-in support for Git in CruiseControl.NET. Anyone have suggestions on Git plug-ins, tips, or other advice on getting CruiseControl.NET with work with Git?
TWA
  • 12,756
  • 13
  • 56
  • 92
12
votes
5 answers

msbuild “Unable to remove directory”

One of our CruiseControl.NET projects keeps intermittently failing because a msbuild task fails with error MSB3231: Unable to remove directory "d:\Somewhere\Dir\Admin". The parameter is incorrect. The corresponding msbuild script line is…
Mormegil
  • 7,955
  • 4
  • 42
  • 77
12
votes
3 answers

What is the difference between using 'devenv' and 'msbuild' in CruiseControl.NET builds?

What is the main difference between using the tag and the tag is in CruiseControl.NET? I understand they call different executables, but sometimes I get different results (as far as pass/fail at compile time), and I would like to…
12
votes
2 answers

Configuration does not have any version information - assuming the configuration is for version 1.5

Where in ccnet.config set version? I search and read docs but there is no version mentioned.
senzacionale
  • 20,448
  • 67
  • 204
  • 316
12
votes
5 answers

Automated Silverlight Unit Testing with CruiseControl.NET

What is currently the best solution to automate running unit tests against silverlight applications within CruiseControl.NET? Preferably I would like to run MSTest unit tests however as these aren't officially supported for silverlight yet I am open…
11
votes
1 answer

Getting CruiseControl.NET to use output from long-running task when displaying "Activity"

In CruiseControl.NET, I have two projects set up, one for building and one for deploying build packages. Our build is largely based around MSBuild, and as it runs the dashboard constantly updates with the latest output from the build. This means…
AwesomeTown
  • 2,800
  • 2
  • 27
  • 41
11
votes
2 answers

Get CruiseControl to talk to github with the correct public key

Has anybody installed git and ControlControl and got CruiseControl to pull from GitHub on a window 2003 server. I keep getting 'public key errors (access denied)' - Which is good i suppose as that confirms git is talking to GitHub. However what is…
Danny Lister
  • 111
  • 1
  • 4
11
votes
5 answers

Continuous Integration: PowerShell vs. CI Server (CC.NET or Hudson)

So, a friend and I have been discussing continuous integration and bat/powershell scripts versus CI servers like CruiseControl.Net or Hudson. The following powershell pseudo script works to update from SVN, build using msbuild, deploy/copy out,…
11
votes
2 answers

How to assign exec's output to a property in NAnt

My aim is to fill property with output of command "git describe". I have a property: And I want to fill it with output of the following command: git describe I tried:
EgorBo
  • 6,120
  • 3
  • 35
  • 40
11
votes
2 answers

How can I prevent concurrent builds in CruiseControl.NET?

We have several projects in CruiseControl and I noticed that often 2 or more projects are building at the same time. This seems to be causing conflicts. Often, a build fails and if I look at the reason, it's failing to access some file, and if I…
JoelFan
  • 37,465
  • 35
  • 132
  • 205
10
votes
4 answers

SignTool.exe Sporadically Fails with Exit Code 1

As part of our build system, we use signtool.exe with a certificate to sign our binaries once they've been built. Occasionally (it's hard to tell when it will strike), the signing fails: error MSB3073: The command "C:\Program Files\Microsoft Visual…
ashes999
  • 9,925
  • 16
  • 73
  • 124
10
votes
5 answers

UI Testing Framework + Continuous Integration?

So I have an application that I inherited and I want to build up an automated test suite around it. The application wasn't designed with testability in mind, and the code is a "big ball of mud". My plan was to use a UI Automation testing framework…
10
votes
3 answers

Assembly Versioning using CruiseControl.net

I have setup CruiseControl.net for a bunch of my projects which are related. As a result a single project tag in CruiseControl has multiple SVN checkouts and then a bunch of msbuild tasks compile all the individual sln files. I need to update the…
Anj
1 2
3
92 93