cruisecontrol

How do I delete a directory with cc.net / cruiscontrol ?

I would like to delete my working directory during the cruisecontrol build process...I'm sure this is easy, but I have been unable to find an example of it... If you know how to create a directory, that would be useful as well. Thanks. ...

Can you use CruiseControl to build Cocoa/Objective-C projects?

Has anyone ever set up Cruise Control to build an OS X Cocoa/Objective-C project? If so, is there a preferred flavor of CruiseControl (CruiseControl.rb or just regular CruiseControl) that would be easier to do this with. I currently have a Ruby rake file that has steps for doing building and running tests, and wanted to automate this ...

How do I solve this error: "Class PHPUnit_Extensions_SeleniumTestCase could not be found"

I am trying to run a SeleniumTestCase with phpunit but I cannot get it to run with the phpunit.bat script. My goal is to use phpunit with Selenium RC in CruiseControl & phpUnderControl. This is what the test looks like: require_once 'PHPUnit/Extensions/SeleniumTestCase.php'; class WebTest extends PHPUnit_Extensions_SeleniumTestCase {...

Is there an easy way to get Apache Tomcat to reboot automatically after a deployment?

Our project uses Cruise Control to both build and hot deploy a web application to a remote server (via FTP) running Tomcat in the form of a .war file. Unfortunately, "hot" deploys don't appear to work properly, causing us to reboot Tomcat in response to each deployment. We would really like to do this auto-magically, much like the buil...

Which Continuous Integration library to use?

I've worked with Cruise Control as the CI framework in my last project. Any recommendations on some other tools? (Not that i found CruiseControl lacking, just wanted to know if someone did some comparisons) ...

Why do my hot-deployed files disappear sometimes? (I think Apache eats them)

Here's my situation: Windows Server Apache CruiseControl The last step of my CruiseControl deploy scripts copies the build to Apache's htdocs folder, in a "demos" folder (I believe this is referred to as a "hot deploy"?) All is good and dandy, except that SOMETIMES (not common, but it happens enough that it bugs me), the demos folde...

What's the difference between Phing and PHPUnderControl?

We currently use a hand-rolled setup and configuration script and a hand-rolled continuous integration script to build and deploy our application. I am looking at formalizing this somewhat with a third party system designed for these purposes. I have looked into Phing before, and I get that it's basically like Ant. But, my Ant experienc...

CruiseControl.NET view NUnit xml test result when Nant build file executes NUnit

I have a Nant build file which executes NUnit after compiling the dll's. I am executing the NAnt build file with a task in CruiseControl. So NAnt is running the tests not CruiseControl. How do I configure it so that the CruiseControl web dashboard can be used to view the NUnit output ? This fixed it: <publishers> <merge> <...

WatiN test using IE.GetCookie failing only from CruiseControl

I added some simple WatiN tests to our app today to check that a cookie value is stored correctly. The tests pass locally on all machines in the team. However, when CruiseControl runs the tests on our Build server these new tests fail on the line containing browser.GetCookie(url, cookieName) The error given in the CruiseControl log is...

CruiseControl [.Net] vs TeamCity for continuous integration?

i would like to ask you which automated build environment you consider better, based on practical experience. i'm planning to do some .Net and some Java development, so i would like to have a tool that supports both these platforms. i've been reading around and found out about CruiseControl.NET, used on stackoverflow development, and Te...

Continuous Integration for Xcode projects?

After using Hudson for continuous integration with a prior project, I want to set up a continuous integration server for the iPhone projects I'm working on now. After doing some research it looks like there aren't any CI engines designed specifically for Xcode, but one guy has had success using Cruise Control combined with the xcodebuild...

Version control server performance when using CruiseControl (StarTeam or alternatives)

We are using CruiseControl with a StarTeam server and having problems with the StarTeam server crashing. We are wondering if we are hitting the server too hard. Across 3 CruiseControl machines and a total of about 30 projects, we are logging into StarTeam and checking for modifications every minute or so. Most of our projects have ~20...

Synchronizing CruiseControl projects across Linux and Windows platforms with dependencies

I have a multiple platform application set, with some applications running on Linux and some on Windows. I want to accomplish the following build: Server L runs CruiseControl with Project A, a Linux-only server application. This should build first. If Project A builds successfully, it needs to somehow kick off... Project B, a Window...

how to automate or facilitate multiplatform build/test before committing?

Hi all, Our software is built on linux and windows platforms. Depending on the preference of the developer a contribution is developed and tested on either platform and then committed to our subversion repository. It then turns out that the contribution doesn't build on the other platform, and a fix has to be made. The fix on the other ...

Cruise Control and PHP projects

Hi, I'm looking for a complete solution to a automated "building" and testing of PHP application. I came across PhpUnderControl, a solution for running automated application builds created around Cruise Control. Unfortunately PhpUC is still in it's early stages of development and I can't get it to work on windows box. After few hours ...

Quick Test Pro (Regression test scripts) - Cruisecontrol.net

Any one succeeded in integrating Quick Test Pro (QTP) automated test scripts in Cruisecontrol.net. if any one have an idea to run them unattended , in a schedule task or cruisecontrol.net will be more useful.# ...

c++ continuous integration with performance metrics

I want to set up a continuous integration and test framework for my open source C++ project. The desired features are: 1. check out the source code 2. run all the unit and other tests 3. run performance tests (these measure the software quality - for example how long does it take the system to complete the test) 4. produce a report base...

How can I setup Continuum to build on svn commits?

I had never tried Continuum as a build server until recently when a project required it. I appreciate the integration with Maven builds however I have been unable to find a way to have Continuum build my projects on every Subversion commit (like CruiseControl). There are several issue/bugs reported related to this topic of triggering b...

Code freeze in SVN - Build management

Is there a better way to implement code freeze in SVN than asking all developers to not check in any new code? We have CruiseControl running, which automatically deploys the latest build to environment. So if new code comes in, the build that was made available earlier changes to the latest one. I want that the build that is deployed is ...

Differences between CruiseControl (original) and CruiseControl.NET

Are there any differences between the original CruiseControl and the .NET port? I've compared the 2, but can't find any big differences except the language it has been developed in. I want to use either one of them for (automated) testing of web applications, using Selenium and Subversion, perhaps even Groovy but don't know which to choo...