[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 01:11:30 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 88ad8725507a4a27efa2f8f1bc417c9e3cf9f8b0
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 18 01:33:13 2010 +0000

    2010-01-17  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Eric Seidel.
    
            EWS (Early Warning Systems) should build both debug and release
            https://bugs.webkit.org/show_bug.cgi?id=33681
    
            Build both debug and release for chromium-ews.
    
            * Scripts/webkitpy/commands/early_warning_system.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53379 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 3e992b7..60642e8 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,16 @@
 2010-01-17  Adam Barth  <abarth at webkit.org>
 
+        Reviewed by Eric Seidel.
+
+        EWS (Early Warning Systems) should build both debug and release
+        https://bugs.webkit.org/show_bug.cgi?id=33681
+
+        Build both debug and release for chromium-ews.
+
+        * Scripts/webkitpy/commands/early_warning_system.py:
+
+2010-01-17  Adam Barth  <abarth at webkit.org>
+
         Reviewed by Darin Adler.
 
         style-queue should include instructions for how to file bugs against check-webkit-style
diff --git a/WebKitTools/Scripts/webkitpy/commands/early_warning_system.py b/WebKitTools/Scripts/webkitpy/commands/early_warning_system.py
index 2abcc42..b318291 100644
--- a/WebKitTools/Scripts/webkitpy/commands/early_warning_system.py
+++ b/WebKitTools/Scripts/webkitpy/commands/early_warning_system.py
@@ -37,13 +37,20 @@ from webkitpy.queueengine import QueueEngine
 
 
 class AbstractEarlyWarningSystem(AbstractReviewQueue):
+    _build_style = "release"
+
     def __init__(self):
         AbstractReviewQueue.__init__(self)
         self.port = WebKitPort.port(self.port_name)
 
     def should_proceed_with_work_item(self, patch):
         try:
-            self.run_webkit_patch(["build", self.port.flag(), "--force-clean", "--quiet"])
+            self.run_webkit_patch([
+                "build",
+                self.port.flag(),
+                "--build-style=%s" % self._build_style,
+                "--force-clean",
+                "--quiet"])
             self._update_status("Building", patch)
         except ScriptError, e:
             self._update_status("Unable to perform a build")
@@ -54,6 +61,7 @@ class AbstractEarlyWarningSystem(AbstractReviewQueue):
         self.run_webkit_patch([
             "build-attachment",
             self.port.flag(),
+            "--build-style=%s" % self._build_style,
             "--force-clean",
             "--quiet",
             "--non-interactive",
@@ -90,6 +98,7 @@ class QtEWS(AbstractEarlyWarningSystem):
 class ChromiumEWS(AbstractEarlyWarningSystem):
     name = "chromium-ews"
     port_name = "chromium"
+    _build_style = "both"
     watchers = AbstractEarlyWarningSystem.watchers + [
         "dglazkov at chromium.org",
     ]

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list