vote up 4 vote down star
3

What tools do you use for Automated Builds / Automated Deployments? Why?

What tools do you recommend?

flag

Depends on language and platform, I'd say... – Thomas Sep 19 '08 at 4:29
I would agree only to a point. As long as your builder can actually build the language. Deployment scripts don't matter with the language, but only with the location of where the code is going (linux, windows, etc) – ferventcoder Sep 19 '08 at 5:50

20 Answers

vote up 5 vote down check

Hudson for automated builds. I chose it because it was the easiest to setup and demo. A system that's too complex and isn't slick-looking won't impress management enough to get them on-board for automated builds. Especially in a project that has a lot of inertia.

link|flag
Whe are using hudson here too. It is so much good and has some plugins to analyze data that our build creates (like test reports, coverage tools and some other code analysis). – marcospereira Sep 19 '08 at 5:35
vote up 0 vote down

UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.

Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!

http://code.google.com/p/uppercut/

Some good explanations here: UppercuT

link|flag
vote up 0 vote down

Make for the builds. Debian packages for deployments (since our production servers runs it).

link|flag
vote up 0 vote down

For our Windows-compilable stuff, we use FinalBuilder.

link|flag
vote up 0 vote down

We use Hericus Zed Builds And Bugs Management for our automated builds.

We have 4 branches of code, each with java, c++, C#, cross platform compiles and installers for 5 OS's.

link|flag
vote up 0 vote down

ANT for both build and deployment/installs.

Makes a great cross-platform installer.

link|flag
vote up 0 vote down

I've had success using buildbot, triggered by a post-commit script on a subversion repository. This has been used for both automated builds and automated testing.

link|flag
vote up 1 vote down

We use TeamCity, from JetBrains. They also make Resharper And IntelliJ.

We use it for building our .Net applications, and it has been quite easy to set up, connect to TFS, and run additional tools from. It is very polished, and actually kinda reminds me of this site. Found it much nicer than CruiseControl, and for our team size it is free. If you need lots of different builds, more per-user builds, and so on then it costs a bit (but still quite reasonable).

link|flag
vote up 0 vote down

Awesome. I am going to check out the ones I have never heard of.

Surprised I haven't heard Boo mentioned yet.

link|flag
vote up 1 vote down

Maven2 and Hudson.

Kind Regards

link|flag
vote up 1 vote down

Visual Build Pro

link|flag
vote up 1 vote down

Automated Build Studio.

Instead of letting you mes with scripts or xml files, it comes with predefined graphical macro operations that allows you to create tasks easily.

link|flag
... but we're programmers here. – xanadont Sep 19 '08 at 5:44
We're programmers, so we are lazy enough to use the most intuitive tools to get our job done. If that means no scripts no code, so be it. – Ngu Soon Hui Oct 28 at 2:59
vote up 0 vote down

The GNU Autotools definitely. The autoconf and automake are de-facto standard for unix systems.

link|flag
vote up 0 vote down

We used to use Visual Build from Kinook software, but recently with our new application we switched to MSBuild since it had better integration with TFS and the ability to create custom tasks.

link|flag
vote up 3 vote down

NAnt for builds (but MSBuild, Rake, almost anything would be fine) and CruiseControl.NET for deployments. I'm currently working with the new Cruise from ThoughtWorks studios as it provides a better way to stage the various pipelines and let's me deploy any version I want to a target environment.

link|flag
I have been pretty excited about seeing Cruise! – ferventcoder Sep 19 '08 at 5:51
vote up 1 vote down

For automated builds, I think the best tool going right now is JetBrain's Team City. The free version has all the features you'll need for most 5-10 person teams. Set up is easy, configuring new projects is painless (relatively), and most importantly, it's reliable.

For automated migrations, nothing beats PowerShell.

link|flag
vote up 0 vote down

make and bash on linux

make and cmd on windows

link|flag
vote up 1 vote down

At work we use good ol' Ant to build our Java servlets.

link|flag
vote up 1 vote down

CruiseControl for automated builds. Works great.

link|flag
vote up 1 vote down

Funnily enough I just spent two weeks overhauling (read implementing from scratch) our nightly build process. Great fun (no, really). I toyed with the idea of installing Team Foundation Server, but we use Perforce for source control and I didn't think it was worth the hassle.

Our process is now a set of Powershell scripts that run on a dedicated build/test server that do the following on a scheduled task:

Wipe out the entire source tree (check that you didn't have anything checked out first!)

Bring down the entire source tree from Perforce (from the last labelled build)

Generate a change report (by syncing to HEAD and watching what comes down)

Build the App

Index the PDB files to the Perforce sources

Store the binaries and symbols in a dedicated symbol server

Run the test projects

Build the installer

Label

Send out emails to the group with status reports on all of the above

Works well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.