I am pretty new in builders and absolutely newbie in FinalBuilder. It is a great app, very intuitive, well documented with lots of features. But I can't find one thing: How can I determine who is responsible for the broken build?
|
feedback
|
|
This is a notoriously hard problem to tackle, and I'd be surprised if FB server got it right. That's not to say that there isn't any function to get some information out of it, but consider this: If two commits are done within a short timespan, and the server is currently occupied, by the time it picks up the changes and runs, it will run for the last one. How do you know which of the two changesets are really responsible? Also, if I remove a method, and you call it, which of the two are in error? Me because I removed the wrong method, or you because you call a method we're not supposed to be using? TeamCity has some provisions for this, but it frequently gets things wrong, in particular, consider the following sequence of events:
It gets complicated knowing "who broke the build", at most you can figure out who "started a sequence of breaking the build". I know TeamCity gives you that, I don't know if FB server does. | |||
|
feedback
|
|
It depends how you define "who is responsible for the broken build" If you define it as author of the last commit then you should retrieve the information from source control system. In case of subversion you can use svn info task to get the author. | |||||||||||
feedback
|