Click here to Skip to main content
Click here to Skip to main content

How to Setup CruiseControl.NET for Starters

By , 20 Jul 2008
 

Introduction

As you already know, CruiseControl.Net is an open source framework for build automation. Though there are hundreds of articles on the topic in the web, I was unable to find one that suited me as a starter. Hope this article helps people like me out there who want to get a taste of the continuous integration process using CruiseControl.Net, Visual Source Safe and Visual Studio.

I intend to showcase the bare minimum steps involved to automate the build process of an ASP.NET Visual Studio 2005 solution.

Prerequisites

  • CruiseControl.Net
  • Visual Studio 2005 IDE
  • Visual SourceSafe

Getting Started

Install the setup files for CC.net either using the MSI installer or simply unzip the zip file (I used the later approach). You will find four folders namely, cctray, examples, server and webdashboard. Edit the ccnet.config file in the server to make it look like the following:

<cruisecontrol>
<project name="MyProjectBuild" queue="Q1" queuePriority="1">
    <workingDirectory>c:\TestCC</workingDirectory>
    <artifactDirectory>c:\TestCC\Docs</artifactDirectory>
    <category>Category 1</category>
    <webURL>http://localhost/ccnet</webURL>
    <modificationDelaySeconds>2</modificationDelaySeconds>
    <sourcecontrol type="vss" autoGetSource="true" applyLabel="true">
   	<executable>C:\Program Files\Microsoft Visual Studio\
				Common\VSS\win32\SS.EXE</executable>
   	<project>$/MyProject/Source</project>
   	<username>judy</username>
   	<password></password>
   	<ssdir>\\filesvr1\myproj</ssdir>
   	<workingDirectory>c:\TestCC</workingDirectory>   	
   	<cleanCopy>true</cleanCopy>
    </sourcecontrol>
    <tasks>
        <devenv>
	    <solutionfile>c:\TestCC\src\MySolution.sln</solutionfile>
	    <configuration>Debug</configuration>
	    <buildtype>Build</buildtype>	    
	    <executable>C:\Program Files\Microsoft Visual Studio 8\
				Common7\IDE\devenv.exe</executable>
	    <buildTimeoutSeconds>300</buildTimeoutSeconds>
	</devenv>
    </tasks>
    <publishers>
        <xmllogger logDir="c:\TestCC\buildlogs" />
    </publishers>
</project>
</cruisecontrol>

The above XML shows that I have my VSS db in another machine on the network \\filesvr1\myproj. I want CC.NET to get a clean copy of the source from vss location $/MyProject/Source to my local folder c:\testcc. Instruct VS IDE to build the solution c:\testcc\src\MySolution.sln.

Now I am ready to run the server. All I need to do is issue the following command from the command line:

ccnet -project:MyProjectBuild 

This will immediately integrate the project MyProjectBuild. The verbose output can be seen in the command prompt itself. To get a better view, the web dashboard needs to be configured. This can be done by simply creating a website pointing to the dashboard folder. Navigating to the default page would show the project integration status. Note that the ccnet.exe server has to be running to view the build status.

You can also apply triggers to schedule the build. This can be done quite easily using the <triggers> tag.

Conclusion

You can see how easy it is to get CruiseControl.Net running. This article just describes how to automate the build. The build is still not ready for deployment. Meaning I may want to place the build in another folder for release without the code behind. This is covered in the article, Automating ASP.NET Web Application project build using CruiseControl.Net and MSBuild.

Happy programming!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Judy Joy
Team Leader
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Layout  Per page   
GeneralCCNet XmlConfig Pluginmembervoid leenux();16 Apr '11 - 7:38 
GeneralCCNETmemberhemalvadgama22 Apr '08 - 3:29 
QuestionIntegrating ncoverexplorer into cruisecontrol.net? [modified]memberppayal5 Apr '08 - 21:25 
QuestionMissing a tag?memberTodd Davis5 Apr '08 - 5:47 
AnswerRe: Missing a tag?memberJudy Vinu24 Jul '08 - 20:31 
GeneralCruiseControl and Source Safe configurationmemberWilliam F27 Jan '08 - 22:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 21 Jul 2008
Article Copyright 2007 by Judy Joy
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid