Does CI need a CI-Server - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:12:05Z http://stackoverflow.com/feeds/question/788010 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/788010/does-ci-need-a-ci-server 3 Does CI need a CI-Server crauscher 2009-04-25T01:10:36Z 2009-04-28T21:00:00Z <p>Is a CI server required for continous integration?</p> http://stackoverflow.com/questions/788010/does-ci-need-a-ci-server/788013#788013 8 Answer by ojblass for Does CI need a CI-Server ojblass 2009-04-25T01:14:22Z 2009-04-25T01:14:22Z <p>In order to facilitate continous integration you need to automate the build, distribution, and deploy processes. Each of these steps is possible without any specialized CI-Server. Coordinating these activities can be done through file notifications and other low level mechanisms; however, a database driven backend (a CI-Server) coordinating these steps greatly enhances the reliability, scalability, and maintainability of your systems.</p> http://stackoverflow.com/questions/788010/does-ci-need-a-ci-server/788033#788033 3 Answer by MrTelly for Does CI need a CI-Server MrTelly 2009-04-25T01:27:13Z 2009-04-25T01:27:13Z <p>You don't need a dedicated server, but a build machine of some kind is invaluable, otherwise there is no single central place where the code is always being built and tested. Although you can mimic this affect using a developer machine, there's the risk of overlap with the code that is being changed on that machine.</p> <p>BTW I use Hudson, which is pretty light weight - doesn't need much to get it going.</p> http://stackoverflow.com/questions/788010/does-ci-need-a-ci-server/788118#788118 2 Answer by Jay Bazuzi for Does CI need a CI-Server Jay Bazuzi 2009-04-25T02:43:13Z 2009-04-25T02:43:13Z <p>It's important to use a dedicated machine so that you get independent verification, without corruption. </p> <p>For small projects, it can be a pretty basic machine, so don't let hardware costs get you down. You probably have an old machine in a closet that is good enough. </p> <p>You can also avoid dedicated <em>hardware</em> by using a virtual machine. Best bet is to find a server that is doing something else but is underloaded, and put the VM on it.</p> http://stackoverflow.com/questions/788010/does-ci-need-a-ci-server/788181#788181 1 Answer by Josh Kodroff for Does CI need a CI-Server Josh Kodroff 2009-04-25T03:26:00Z 2009-04-25T03:26:00Z <p>A separate machine is really necessary if you have more than one developer on the project.</p> <p>If you're using the .NET technology stack here's some pointers:</p> <ol> <li><a href="http://confluence.public.thoughtworks.org/display/CCNET/Welcome%2Bto%2BCruiseControl.NET" rel="nofollow">CruiseControl.Net</a> is fairly lightweight. That's what we use. You could probably run it on your development machine without too much trouble.</li> <li>You don't need to install or run Visual Studio unless you have Visual Studio Setup Projects. Instead, you can use a free command line build tool called <a href="http://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx" rel="nofollow">MSBuild</a>.</li> </ol> http://stackoverflow.com/questions/788010/does-ci-need-a-ci-server/798652#798652 1 Answer by sal for Does CI need a CI-Server sal 2009-04-28T15:54:37Z 2009-04-28T21:00:00Z <p>Before I ever heard the term "continuous-integration" (This was back in 2002 or 2003) I wrote a nightly build script that connected to cvs, grabbed a clean copy of the main project and the five smaller sub-projects, built all the jars via ant then built and redeployed a WAR file via a second ant script that used the tomcat ant tasks.</p> <p>It ran via cron at 7pm and sent email with a bunch of attached output files. We used it for the entire 7 months of the project and it stayed in use for the next 20 months of maintenance and improvements. </p> <p>It worked fine but I would prefer hudson over bash scripts, cron and ant.</p>