Is there CI server software that can do all of this?

Posted by SnOrfus on Stack Overflow See other posts from Stack Overflow or by SnOrfus
Published on 2010-03-11T06:06:49Z Indexed on 2010/03/23 20:03 UTC
Read the original article Hit count: 550

I'm trying to put together a Continuous Integration server that will do the following:

  1. Work with subversion
  2. Use NUnit tests (fail build on failed tests)
  3. Use partcover (fail build on < X% coverage)
  4. Run code against FxCop (fail build on FxCop warnings, given settings)
  5. Run code against StyleCop (fail build on StyleCop warnings, given settings)

Not as important:

  1. Be able to run from a sln file
  2. Be able to publish the application (ClickOnce is setup for the project already)

I'm using TeamCity right now and it doesn't seem to do 3 or 5, and it doesn't have a runner for the newest NUnit.

From the list of plugins that hudson has, it looks like it can do all of these except 3 (and the not as important requests). I've considered writing a plugin for hudons to use partcover, but that's adding more time to setting up a build server.

© Stack Overflow or respective owner

Related posts about continuous-integration

Related posts about nunit