English 中文(简体)
Bug/issue tracking integration with Cruise control
原标题:

I am putting together a bunch of applications to create an automatic building for microsoft platform (the products I chose and the software I will build, both, runs on windows). The products I ve chosen are:

  • Code repository: SubVersion
  • Continuous integration: CruiseControl
  • Unit testing: NUnit
  • Test coverage: NCover
  • Static code analysis: FXCop

Now I need to choose a bug/issue tracking system (free if possible) that can be, in some way, integrated with the previous products.
What I mean by integration? Well, all these products have a file as output I want to be able to publish errors and bugs found by them into the tracking system.
Do you know some product, some technique or trick that can help me to do this?

Thanks in advance.

最佳回答

First off, these are all tools I have experience with and congratulate you on your choices - these tools will serve you well if you use them wisely.

The most common usage of these tools is that CC would fail the build if certain criteria are not met, e.g.:

  • A unit test fails
  • Code coverage falls below a certain threshold
  • FXCop detects a violation of a certain severity

Because the build would fail and in continuous integration a failed build should be fixed immediately, you wouldn t really need to put those issues into a bug tracking system. Think of build-failing errors as being as severe as the code not compiling - you drop everything and fix right away.

问题回答

暂无回答




相关问题
Why not use TFS as a build / CI solution?

Currently our build solution is set up using TFS + MS Build scripts. TFS is also being used as a CI server. I ve seen several posts on this site telling people about other CI solutions. Are there ...

Get files from TFS under Linux [closed]

is there a free (command line) tool for linux which with I can get all files from a TFS-Repository (no Check in / Check out required - only get actual version)?

upgrading tfs 2008 sp1 to use sql server 2008

I have an instance of tfs 2008 supported by sql server 2005. I want to change the sql server machine by doing a restore based move. I also want to change the version of sql server to 2008. I know ...

Using Git in a TFS shop

Using Git at home has spoiled me - I now find using TFS at work to be a bit of a drag and want to explore the possibility of using Git locally and syncing somehow with TFS. I figure there are a few ...

TFSReg in 2010 Beta 2?

does anybody know what is the equivalent of the TFSReg.exe command-line tool in 2010 Beta 2? I cannot find it anywhere, I searched the entire Program Files tree. Was it renamed? Moved? Replaced by ...

热门标签