vote up 2 vote down star

There are so many different systems out there, what do you prefer? Using a system that is written in the same language like your own software?

I started with the famous Autotools-Collection once. Some years later I found and tried SCons and was amazed. It's so clean and easy in comparison to Autotools-stuff - but to have Python as a dependency for building a project is just a mess. At the moment I am embedding Ruby into my project and I am very confident with Rake.

So it's just another time choose the right one for the right job? What is your opinion?

flag

78% accept rate

15 Answers

vote up 2 vote down check

See also Which Build-/Configuration Management Tool?.

link|flag
There are so many questions - quite hard to see if something has been asked before. ;) – unexist Sep 20 '08 at 9:55
vote up 1 vote down

I am partial to NAnt at the moment. It's XML based like Ant, but it runs on .NET and seems to be a bit more general. I also used to use SCons.

I tend to stick to a build system I know, regardless of the language I'm currently building for, unless dependencies matter a lot.

link|flag
vote up 2 vote down

We use a combination of: FinalBuilder for the build script , Team City for Continuous Integration (that triggers FB by command line) and that's basically it. No need to see XML anymore, thank god.

Roy

link|flag
vote up 6 vote down

SCons

link|flag
I still use Scons wherever I can. – grieve Nov 7 '08 at 23:05
vote up 3 vote down

Maven!

link|flag
love the maven now that i have used it in a few projects.but there is a steep learning curve. – David Medinets Sep 23 '08 at 1:42
vote up 1 vote down

MSBuild is really nice with .NET, I've written a couple of extensions myself to help with using Continious Integration and the TFS 2008 Build Server.

The TFS 2008 build server is a bit finiky (or so I've found), nice and powerful, and because it's familiar with is MSBuild base it's easy to work it.

It can be a bit tricky to use for automated deployment to staging/ UAT environments

link|flag
vote up 3 vote down

Ant.

Since I use Eclipse to write Java programs, I found that Ant integrates very well. It's definitely a plus that I can package jar files for release, and generate zip files just as a snapsnot of the current project state.

link|flag
vote up 1 vote down

For the Ant people: Do you write your own tests and/or ships Ant with the frequently used tests? I know that Rake uses a similar design - similar to the one in the good old Makefile indeed. ;)

link|flag
vote up 2 vote down

Boost.Build (bjam). It is very light, I can include the source for it in the VCS tree -- all it needs is a C compiler which you presumably already have, as you are doing programming ;).

An older, yes similar tool called Perforce Jam is being used by Sybase. If a project of that size can use Jam, surely someone can use a more modern and recent clone without any problems.

It is very easy to use and it is supports a wide range of compilers/systems.

link|flag
vote up 1 vote down

We really love the Ant and Ivy DM combination we've setup. Centralized build environment so changes flow to all our applications automatically. Has been a real time saver for us.

link|flag
vote up 1 vote down

CruiseControl hooked into Nant and MSBuild.

All we have to do is commit, and if it builds successfully and passes all our tests it gets automagically made ready for deployed to UAT/live.

See this answer for a more detailed explanation of our build/deployment process.

link|flag
vote up 1 vote down

Ant + custom scripts. Maven has it's uses but also is often the cause of major pain, especially when using >1 module/artifact for your project.

Ultimately it's about using the appropriate tool for the job in hand.

link|flag
vote up 2 vote down

I have yet to see anything as flexible and easy to read as Rake. To all those who use ant + custom scripts, you could have one rake script to deal with everything.

It easily does the obvious things a build system should do, and you can always write ruby code if you need to do something more complex.

link|flag
Same here. Do you write all your tests by yourself? I use a mix of mkmf and Rake functions. – unexist Sep 26 '08 at 13:51
vote up 1 vote down

UppercuT with CruiseControl.NET!

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

Some good explanations here: UppercuT

link|flag
vote up 0 vote down

xargs is one favorite

link|flag

Your Answer

Get an OpenID
or

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