views:

119

answers:

1

I recently moved from Subversion to Mercurial. I'd like to setup Continuous Integration (CI), but I'm unsure how a DVCS CI differs from an Subversion CI implementation.

I'd like to hear how others have implemented their DVCS CI implementations and what tool sets were used.

+2  A: 

There is not much difference between the way you would setup a subversion CI or a Mercurial CI. Typically, the both provide pre and post commit hooks for you to work with. From the perspective of a CI tool, this is the same. Almost any CI tool, has support for all these version control system to monitor changes and based on the changes, trigger a build / test cycle and notify the results via web, mail etc.

I would suggest BuildBot, because I have personally used it recently and works with both subversion and Mercurial. It also works on all platform as it is written in Python. Though MS has some very powerful tools for CI which exploits the platform, if you use all microsoft tools.

Buildbot is easy to learn and use.

Not as self plugin, but I wrote a brief summary of information on my blog yesterday !

Check out some of the features of Microsoft CI tool, I have always found the level of details daunting and increasingly the tools themselves demand more time.

Of course, there should be a central repository to which all changes are finally pushed and where you can integrate with a CI tool.

pyfunc