Things to consider when writing our own Continuous Integration server? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:29:33Z http://stackoverflow.com/feeds/question/889167 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/889167/things-to-consider-when-writing-our-own-continuous-integration-server 4 Things to consider when writing our own Continuous Integration server? McWafflestix 2009-05-20T17:17:15Z 2009-05-22T01:44:46Z <p>I work on a large project in an organization that is (slowly) upgrading our development processes to be a bit more modern. We currently are considering moving to a Continuous Integration model; as part of this move, we are considering writing our own Continuous Integration server. We have a very mature (somewhat ossified) build process; we also have a large set of tests that we want to be run as build verification tests.</p> <p>We have looked into several commercial CI servers, and it appears that the amount of work involved in customizing any of them to our individual needs is relatively high; so high that it may be worth our while to just custom write our own CI server. However, I feel that we may be missing some potential pitfalls of this process. The question of bugs in our implementation has been raised and considered; are there any other major considerations (other than the amount of effort involved in writing a CI system, of course) that we should keep in mind when evaluating our options? From anyone who has implemented a custom CI server, what were the particular troubles? And from anyone who has used a commercial CI system, were there any things that you wish you would have done yourself, or things which you were particularly happy you didn't need to do yourself?</p> http://stackoverflow.com/questions/889167/things-to-consider-when-writing-our-own-continuous-integration-server/889186#889186 8 Answer by tim for Things to consider when writing our own Continuous Integration server? tim 2009-05-20T17:22:10Z 2009-05-20T18:29:33Z <p>Instead of a full-blown CI server, why not just build the customized pieces you need? Reuse as much as you can rather than have EVERYTHING custom, you can at least make some parts off-the shelf. </p> <p>(By the way, I wouldn't characterize this as "NIH")</p> <p>Note that even if you spend as much time configuring your builds to work with an existing CI server as you would building your own (probably being generous here) you then only need to maintain each custom bit - not the whole framework. </p> <p>See what you can leverage, and work with it. Also see what tool seems to have promise for moving in the direction you are going. No CI server is going to work perfectly in your environment right out of the box. They all have to be tweaked and "met halfway". </p> http://stackoverflow.com/questions/889167/things-to-consider-when-writing-our-own-continuous-integration-server/889203#889203 12 Answer by Matt Hinze for Things to consider when writing our own Continuous Integration server? Matt Hinze 2009-05-20T17:26:01Z 2009-05-20T17:26:01Z <p>I would strongly advise against this NIH thinking. </p> <ul> <li>Consider modifying an open source CI server like CruiseControl.NET</li> <li>Consider writing custom Nant tasks</li> <li>Consider modifying your project to be more amenable to existing options</li> <li>You don't want to be in the business of continuous integration, you want to just use it and see the benefits</li> </ul> http://stackoverflow.com/questions/889167/things-to-consider-when-writing-our-own-continuous-integration-server/889269#889269 0 Answer by Sisken for Things to consider when writing our own Continuous Integration server? Sisken 2009-05-20T17:41:09Z 2009-05-20T17:41:09Z <p>I may try to give some hints from my point of view. At our company we were using the different configuration of the build environment and different target environment. By different configuration I mean different system architecture. And this is a point I would like to describe. (Although I do not know if this is your actual problem).</p> <p>Build of the product was done on build env and to run tests and the product itself it has to be transfered to the target env. Thus it involved cross compiling. We didn't used a commercial or open source continuous integration solution, but we have used set of bash scripts (there was no time to create reasonable solution :( ) Running of the tests (doesn't matter if unit, intergration, sanity, components etc..) has to be done on target.</p> <p>So the question you may ask are - what is development environment? Where would you like to run the tests? (We have been running test on target and small part of the test on the build env as well) Is target environemnt same as devel environment? Do you need to build for different configurations (platform, sw, etc..)?</p> <p>You haven't stated what languages are you using. I know it may be irrelevant, but it is not :) (Even java behaves differently on different platforms (x86 vs x86-64)</p> <p>Anything else like coverage of the code with test, some statical code analysis done during compilation (before..) running documentation task I consider as not very interesting as this tasks can be done as separate plugins.</p> http://stackoverflow.com/questions/889167/things-to-consider-when-writing-our-own-continuous-integration-server/889273#889273 1 Answer by Adam Jaskiewicz for Things to consider when writing our own Continuous Integration server? Adam Jaskiewicz 2009-05-20T17:41:52Z 2009-05-20T17:41:52Z <p>Things I would consider:</p> <ul> <li>What kind of experience do we have on the team in this domain?</li> <li>Is the timeline such that the people on the team can put in the time to learn about the design of CI servers?</li> <li>Is there budget to hire people with this domain knowledge to supplement the team?</li> <li>Why do you think you can do this better than the existing solutions?</li> </ul> http://stackoverflow.com/questions/889167/things-to-consider-when-writing-our-own-continuous-integration-server/889279#889279 2 Answer by Jared for Things to consider when writing our own Continuous Integration server? Jared 2009-05-20T17:42:56Z 2009-05-20T18:04:05Z <p>Doing this well would not be a small effort at all - the open source community is on at least the third generation of open source CI servers - with lots of lessons learned along the way.</p> <p>I would certainly encourage you to look at one of the off-the-shelf CI servers that allows for easy extension, and build out those pieces that are missing. There is nothing in your question that isn't done (and done very well) in most of the existing CI servers.</p> <p>I did implement a "poor man's" internal CI system prior to moving to an open source solution, and found that the open source systems were so much better, complete, and robust that my effort was pointless. </p> <p>In particular, if you're looking for extensability, <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a> would be a great choice - it has a great plugin architecture, and the author is available for paid consulting work - probably a MUCH better use of your resources than rolling your own.</p> <p>As an aside, prior to my involvement with the build process, a product build was a 14.5 hour affair, with no automated testing, packaging, or CM. Thanks to some effort, and following the best practices laid out by the existing CI community, the same project build is down to 7.5 minutes, with automated testing, packaging, and CM. In my experience, it's definitely worth some effort to work your build to comply with the existing best practices of the experienced CI community, rather than trying to make CI bend to your existing build.</p> http://stackoverflow.com/questions/889167/things-to-consider-when-writing-our-own-continuous-integration-server/896072#896072 0 Answer by Steven M. Cherry for Things to consider when writing our own Continuous Integration server? Steven M. Cherry 2009-05-22T01:44:46Z 2009-05-22T01:44:46Z <p>I've been down this road as well. I've written an in-house automated build system 3 times now, for various companies that I have worked for. It's always been fun, and I'm the type of person who enjoys writing tools.</p> <p>At the end of the day, though, it was never a professional system. It was always a system that was good enough, worked for us, and got us by. Unless of course, I went on vacation, or to a meeting in another city, etc. It got to the point that whenever I would go out of town the builds would fail, and fail, and fail. Not because of problems with our code, but because of little things that I would handle in the build system on a daily basis. And when I wasn't there to handle them, no one else knew what to do.</p> <p>All of this took time away from our main focus - our own software development.</p> <p>Finally, we have (at my urging) ditched the hand built perl script system that I wrote, and we've purchased a commercial system: <a href="http://www.hericus.com/" rel="nofollow">Zed Builds and Bugs</a></p> <p>Now, when something goes wrong it's a problem with our own code. The vendor's build system works. When we have questions, we ask them, or ask the community of users. When we need to understand how to do something, they have people to answer our questions.</p> <p>And most importantly, I get to take vacations again :-)</p> <p>I'm still the one handling most of the tasks with the build system, but it's not a question of writing it any more. It's a question of adapting our existing makefiles, Visual Studio projects, Ant build scripts, etc. to the new system.</p> <p>Believe me, it's much easier to buy versus build in this case. Your core business isn't creating a build system (or you wouldn't have asked the question). Focus on your core business, and buy the tools you need for everything else.</p>