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:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@51433
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+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:
+
2009-11-26 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
if not options.check_builders or buildbot.core_builders_are_green():
return
error("Builders at %s are red, please do not commit. Pass --ignore-builders to bypass this check." % (buildbot.buildbot_host))
+
+ def build_webkit(self, quiet=False, port=WebKitPort):
+ log("Building WebKit")
+ WebKitLandingScripts.run_and_throw_if_fail(port.build_webkit_command(), quiet)
# Make sure the tree is still green after updating, before building this patch.
# The first patch ends up checking tree status twice, but that's OK.
self._tool.steps.ensure_builders_are_green(self._tool.buildbot, self._options)
- WebKitLandingScripts.build_webkit(quiet=self._options.quiet, port=self._port)
+ self._tool.steps.build_webkit(quiet=self._options.quiet, port=self._port)
def test(self):
# When running non-interactively we don't want to launch Safari and we want to exit after the first failure.
log("Running %s" % script_name)
cls.run_and_throw_if_fail(port.script_path(script_name), quiet)
- @classmethod
- def build_webkit(cls, quiet=False, port=WebKitPort):
- log("Building WebKit")
- cls.run_and_throw_if_fail(port.build_webkit_command(), quiet)