Changeset 51940 in webkit


Ignore:
Timestamp:
Dec 10, 2009 12:18:05 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-10 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

bugzilla-tool "builders are red" error should tell you which builders
https://bugs.webkit.org/show_bug.cgi?id=32211

  • Scripts/modules/buildsteps.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51932 r51940  
     12009-12-10  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        bugzilla-tool "builders are red" error should tell you which builders
     6        https://bugs.webkit.org/show_bug.cgi?id=32211
     7
     8        * Scripts/modules/buildsteps.py:
     9
    1102009-12-09  Marwan Al Jubeh  <marwan.aljubeh@gmail.com>
    211
  • trunk/WebKitTools/Scripts/modules/buildsteps.py

    r51893 r51940  
    138138        if not self._options.check_builders:
    139139            return
    140         if not self._tool.buildbot.core_builders_are_green():
    141             error("Builders at %s are red, please do not commit.  Pass --ignore-builders to bypass this check." % (self._tool.buildbot.buildbot_host))
     140        red_builders_names = self._tool.buildbot.red_core_builders_names()
     141        if not red_builders_names:
     142            return
     143        red_builders_names = map(lambda name: "\"%s\"" % name, red_builders_names) # Add quotes around the names.
     144        error("Builders [%s] are red, please do not commit.\nSee http://%s.\nPass --ignore-builders to bypass this check." % (", ".join(red_builders_names), self._tool.buildbot.buildbot_host))
    142145
    143146
Note: See TracChangeset for help on using the changeset viewer.