Setting up Continuous Integration with SVN - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:38:02Z http://stackoverflow.com/feeds/question/7190 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/7190/setting-up-continuous-integration-with-svn 4 Setting up Continuous Integration with SVN Dave Anderson 2008-08-10T13:09:13Z 2008-09-03T22:25:28Z <p>What tools would you recommend for setting up CI for build and deployment of multiple websites built on DotNetNuke using SVN for source control? </p> <p>We are currently looking at configuring Cruise Control to work with NAnt, NUnit, NCover and Trac as a test case. What other combinations would worth investigating?</p> <p>We have full control of our development environment so using some form of CI is certain here but I would also like to convince our production services team that they can reliably deploy to the system test, uat and even production environments using these tools.</p> http://stackoverflow.com/questions/7190/setting-up-continuous-integration-with-svn/7198#7198 1 Answer by Jamie for Setting up Continuous Integration with SVN Jamie 2008-08-10T14:01:31Z 2008-08-10T15:05:23Z <p>I would have a look at Team City <a href="http://www.jetbrains.com/teamcity/index.html" rel="nofollow">http://www.jetbrains.com/teamcity/index.html</a> I know some people who are looking in to this and they say good things about it.</p> <p>My companies build process is done in FinalBuilder so I'm going to be looking at their server soon.</p> <p>CC is quite good in that you can have one CC server monitor another CC server so you could set up stuff like - when a build completes on your build server, your test server would wake up, boot up a virtual machine and deploy your application. Stuff like that.</p> http://stackoverflow.com/questions/7190/setting-up-continuous-integration-with-svn/7221#7221 2 Answer by Keith for Setting up Continuous Integration with SVN Keith 2008-08-10T15:34:37Z 2008-08-10T15:34:37Z <p>We use CruiseControl with NUnit, NCover, FxCop, SVN and some custom tools we wrote ourselves to produce the reports. In my opinion it has proven (over the last few years) to be an excellent combination.</p> <p>It's frustrating that MS restricts <em>all</em> of its integration tools to VSTS. Its test framework is as good as NUnit, but you can't use its code coverage tools or anything else.</p> <p>I'd check out XNuit - it's looking pretty promising (but currently lacking UI).</p> <p>We automate nightly builds, and you could automate UAT and manual test builds, but I'm not sure that we'd ever want to automate the release to our production servers. Even if it were any change would be important enough that someone would have to watch over it anyway.</p> http://stackoverflow.com/questions/7190/setting-up-continuous-integration-with-svn/7299#7299 0 Answer by Diago for Setting up Continuous Integration with SVN Diago 2008-08-10T19:35:18Z 2008-08-10T19:35:18Z <p>Microsoft loosened it's constraint on the Testing Platform by including it in Visual Studio 2008 Professional and allowing for the tests to be run from the command line with Framework 3.5 installed. We did a crossover for a client recently and so far they have been able to run all the tests without the need for NUnit.</p> http://stackoverflow.com/questions/7190/setting-up-continuous-integration-with-svn/26364#26364 0 Answer by Chris Comeaux for Setting up Continuous Integration with SVN Chris Comeaux 2008-08-25T16:40:22Z 2008-08-25T16:40:22Z <p>We use CruiseControl.NET running msbuild scripts. Msbuild is responsible for updating from SVN on every commit, compiling, and running FxCop and NCover/NUnit.</p> http://stackoverflow.com/questions/7190/setting-up-continuous-integration-with-svn/29962#29962 2 Answer by João Vieira for Setting up Continuous Integration with SVN João Vieira 2008-08-27T12:15:44Z 2008-08-27T12:15:44Z <p>Take a look at HUDSON (https://hudson.dev.java.net/) . It's highly customizable, and, i my humble opinion, easier than CruiseControl.</p> http://stackoverflow.com/questions/7190/setting-up-continuous-integration-with-svn/42747#42747 0 Answer by David Pokluda for Setting up Continuous Integration with SVN David Pokluda 2008-09-03T22:25:28Z 2008-09-03T22:25:28Z <p>I would recommend you take a look at NAnt + NUnit ( + NCover) + TeamCity with SVN for your build system. There is actually a very nice article describing this configuration at <a href="http://www.acceptedeclectic.com/2008/05/visualsvn-teamcity-nant-sql-server.html" rel="nofollow">Pete W's idea book</a></p>