Changeset 53379 in webkit


Ignore:
Timestamp:
Jan 17, 2010 5:33:13 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-17 Adam Barth <abarth@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:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r53378 r53379  
     12010-01-17  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        EWS (Early Warning Systems) should build both debug and release
     6        https://bugs.webkit.org/show_bug.cgi?id=33681
     7
     8        Build both debug and release for chromium-ews.
     9
     10        * Scripts/webkitpy/commands/early_warning_system.py:
     11
    1122010-01-17  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/webkitpy/commands/early_warning_system.py

    r53133 r53379  
    3838
    3939class AbstractEarlyWarningSystem(AbstractReviewQueue):
     40    _build_style = "release"
     41
    4042    def __init__(self):
    4143        AbstractReviewQueue.__init__(self)
     
    4446    def should_proceed_with_work_item(self, patch):
    4547        try:
    46             self.run_webkit_patch(["build", self.port.flag(), "--force-clean", "--quiet"])
     48            self.run_webkit_patch([
     49                "build",
     50                self.port.flag(),
     51                "--build-style=%s" % self._build_style,
     52                "--force-clean",
     53                "--quiet"])
    4754            self._update_status("Building", patch)
    4855        except ScriptError, e:
     
    5562            "build-attachment",
    5663            self.port.flag(),
     64            "--build-style=%s" % self._build_style,
    5765            "--force-clean",
    5866            "--quiet",
     
    9199    name = "chromium-ews"
    92100    port_name = "chromium"
     101    _build_style = "both"
    93102    watchers = AbstractEarlyWarningSystem.watchers + [
    94103        "dglazkov@chromium.org",
Note: See TracChangeset for help on using the changeset viewer.