= Advantages of Jenkins over Buildbot = [http://jenkins-ci.org/ Jenkins] and [http://trac.buildbot.net Buildbot] are both continuous-integration servers. WebKit currently uses Buildbot at http://build.webkit.org/. This page lists some advantages switching to Jenkins would bring. == Annotating build failures == As described in [https://bugs.webkit.org/show_bug.cgi?id=59527 bug 59527], we'd like to be able to annotate build failures to show whether someone is working on them. Jenkins's [https://wiki.jenkins-ci.org/display/JENKINS/Claim+plugin Claim plugin] would let us do just that. == Build times == Jenkins has built-in support for tracking the length of the build over time and graphing it. == Code coverage statistics == Jenkins's [https://wiki.jenkins-ci.org/display/JENKINS/Cobertura+Plugin Cobertura plugin] combined with [http://nedbatchelder.com/code/coverage/ coverage.py] would allow us to track code coverage statistics for our Python unit tests.