Changeset 51433 in webkit


Ignore:
Timestamp:
Nov 26, 2009 11:55:57 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2009-11-26 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

[bzt] Kill WebKitLandingScripts
https://bugs.webkit.org/show_bug.cgi?id=31904

Step 3: Kill build_webkit.

  • Scripts/modules/buildsteps.py:
  • Scripts/modules/landingsequence.py:
  • Scripts/modules/webkitlandingscripts.py:
Location:
trunk/WebKitTools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51432 r51433  
     12009-11-26  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [bzt] Kill WebKitLandingScripts
     6        https://bugs.webkit.org/show_bug.cgi?id=31904
     7
     8        Step 3: Kill build_webkit.
     9
     10        * Scripts/modules/buildsteps.py:
     11        * Scripts/modules/landingsequence.py:
     12        * Scripts/modules/webkitlandingscripts.py:
     13
    1142009-11-26  Adam Barth  <abarth@webkit.org>
    215
  • trunk/WebKitTools/Scripts/modules/buildsteps.py

    r51432 r51433  
    5555            return
    5656        error("Builders at %s are red, please do not commit.  Pass --ignore-builders to bypass this check." % (buildbot.buildbot_host))
     57
     58    def build_webkit(self, quiet=False, port=WebKitPort):
     59        log("Building WebKit")
     60        WebKitLandingScripts.run_and_throw_if_fail(port.build_webkit_command(), quiet)
  • trunk/WebKitTools/Scripts/modules/landingsequence.py

    r51432 r51433  
    8282        # The first patch ends up checking tree status twice, but that's OK.
    8383        self._tool.steps.ensure_builders_are_green(self._tool.buildbot, self._options)
    84         WebKitLandingScripts.build_webkit(quiet=self._options.quiet, port=self._port)
     84        self._tool.steps.build_webkit(quiet=self._options.quiet, port=self._port)
    8585
    8686    def test(self):
  • trunk/WebKitTools/Scripts/modules/webkitlandingscripts.py

    r51432 r51433  
    119119        cls.run_and_throw_if_fail(port.script_path(script_name), quiet)
    120120
    121     @classmethod
    122     def build_webkit(cls, quiet=False, port=WebKitPort):
    123         log("Building WebKit")
    124         cls.run_and_throw_if_fail(port.build_webkit_command(), quiet)
    125121
    126122
Note: See TracChangeset for help on using the changeset viewer.