vote up 6 vote down star
1

We are a Java shop looking for a CI tool to use. Both Hudson and Teamcity seem to be free but Teamcity seems slicker and with more support.

I was wondering why one would still use Hudson and if anyone could provide any argument for/against either?

flag

20% accept rate
You may be interested in the answers here: stackoverflow.com/questions/1200721/… – ire_and_curses Sep 10 at 10:20
I'd throw CruiseControl into the mix - if you haven't already considered it. Can't comment on a java point of view, having used the .NET version but I like that. – AdaTheDev Sep 10 at 10:22
@ire_and_curses none of the replies in the post give a good argument for either tool compared to the other – pdeva Sep 10 at 10:24
There's also <a href="continuum.apache.org/">Continuum</a>/…; – Adrian Pronk Sep 10 at 11:12
That didn't work :) continuum.apache.org – Adrian Pronk Sep 10 at 11:13
show 1 more comment

6 Answers

vote up 8 vote down

Team City is by far and away the best CI server out there. It's killer feature for me is the tight integration with IDEs (IntelliJ, Eclipse and VisualStudio). It can show you, for example, when a file you're editing in the IDE becomes out of date, who changed it and what they changed. You can commit from the IDE to the CI server, run the comile and tests on the build grid, and then the CI server will commit if the build is successful. You can click on build reports in the CI web app and it will open the appropriate files in the IDE.

There are plugins available (I wrote one: http://team-piazza.googlecode.com), but not many.

link|flag
There is a plugin for Hudson integration into Eclipse too (see code.google.com/p/hudson-eclipse) but I wouldn't call that a killer feature. And BTW, I really prefer Lava Lamps or Nabaztag over IDE integration. Can you plug such devices on a Team City server? Is this documented somewhere? Opensource FTW! – Pascal Thivent Sep 10 at 14:26
1  
Remote run / Pre-tested commit are very useful features of TeamCity. In general TC can be more convenient if your builds are not fast, because in TeamCity you get continuous feedback on what happens in your build (how many tests passed, failed, at which stage the build is and so on). Also TC notifications are more sophisticated. You can configure different rules for different types of builds and for a wide range of notifiers (email, Jabber, windows tray). – Pavel Sher Sep 10 at 14:45
@Pavel: I don't know TeamCity as well as Hudson so I won't challenge the beginning of your comment. But, regarding the notifications, claiming that TC is more sophisticated is pure FUD in my not so humble opinion. All the mentioned notification channels are available on Hudson (you can even add twitter). Actually, I bet that Hudson has way more plugins than TC (check wiki.hudson-ci.org/display/HUDSON/Plugins) and I'm sure TC has more limitations that Hudson. – Pascal Thivent Sep 10 at 15:07
2  
I agree about channels (Hudson has a lot of plugins), but do not agree about rules. In TeamCity you can subscribe to builds with your changes, you can choose to be notified when build begins to fail (e.g. when first test begins to fail). You can ask to be notified on first failed build after success sequence + on first success after failures. And these options are available for all notification channels. One of such channels is IDE notifier: when something goes wrong you will get notification right in your IDE. As I remember Hudson notification rules were much simplier. – Pavel Sher Sep 10 at 15:27
Thanks for the clarification. However, are these configuration options that useful? Honestly, I've never felt the need for such complexity. PS: are you working for JetBrains? :) – Pascal Thivent Sep 10 at 15:33
show 4 more comments
vote up 7 vote down

+1 for Hudson.

Hudson is a very active project, has a wide community of users and an active users mailing list, is really easy to start with, is easy to use, has been used on huge, very huge, projects (JBoss, JAX-WS, etc) and thus has proven records of success, offers very nice advanced features (build matrix, build clustering, etc), is open source,... Finally, if support is really an important thing, you can get commercial support from Sun. But FYI, I've never faced any blocking problem with Hudson.

link|flag
vote up 1 vote down

TeamCity is great because it allows each developer to have their own build profile and hook into it from their IDE. That a lone is 'butt-kickin'. There is also support for GIT etc. Seriously take a look at it. The professional version is free.

link|flag
vote up 0 vote down

I had never heard of Teamcity before -- the website looks slicker for sure. I've been quite satisfied with Hudson, but we're not really pushing it to its limits. It is up and running in a couple of minutes just like Teamcity.

The one big plus for Hudson for me is it being open-source. I see Teamcity supports plugins, so you can probably make it do whatever you want but this might be the only issue that you really cannot add-on later.

link|flag
vote up 0 vote down

I really liked Teamcity but in the environment I am working it, the time it would take to get a Purchase Order for Teamcity through the layers of management would likely have exceeded the time it took to migrate everything over to Hudson.

link|flag
2  
TeamCity professional is free of charge. – Pavel Sher Sep 10 at 14:47
1  
@Pavel, we have more than 20 users and many more builds than that. – sal Sep 10 at 15:02
vote up 0 vote down

I'm just starting to get used to hudson ready to experiment and see how it will fit into our current environment. I have absolutely zero experience with Teamcity so can't comment on that but I am enjoying working with hudson thus far.

There are lots of plugins for hudson plus the hudson site gives you plenty of advice for writing your own (http://wiki.hudson-ci.org/display/HUDSON/Extend+Hudson).

link|flag

Your Answer

Get an OpenID
or

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