⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 249148 in webkit


Ignore:
Timestamp:
Aug 27, 2019, 10:18:18 AM (7 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-build] Use update-webkit script in Apply-WatchList EWS
https://bugs.webkit.org/show_bug.cgi?id=201179

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-build/factories.py:

(WatchListFactory): Updated to use CheckOutSource step as well.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-build/factories.py

    r249100 r249148  
    5959        self.addStep(ApplyPatch())
    6060        self.addStep(CheckStyle())
     61
     62
     63class WatchListFactory(factory.BuildFactory):
     64    def __init__(self, platform, configuration=None, architectures=None, triggers=None, additionalArguments=None, **kwargs):
     65        factory.BuildFactory.__init__(self)
     66        self.addStep(ConfigureBuild(platform, configuration, architectures, False, triggers, additionalArguments))
     67        self.addStep(ValidatePatch())
     68        self.addStep(PrintConfiguration())
     69        self.addStep(CheckOutSource())
     70        self.addStep(UpdateWorkingDirectory())
     71        self.addStep(ApplyPatch())
     72        self.addStep(ApplyWatchList())
    6173
    6274
     
    176188        self.addStep(RunEWSUnitTests())
    177189        self.addStep(RunEWSBuildbotCheckConfig())
    178 
    179 
    180 class WatchListFactory(Factory):
    181     def __init__(self, platform, configuration=None, architectures=None, triggers=None, additionalArguments=None, **kwargs):
    182         Factory.__init__(self, platform, configuration, architectures, False, triggers, additionalArguments)
    183         self.addStep(ApplyWatchList())
  • trunk/Tools/ChangeLog

    r249139 r249148  
     12019-08-27  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-build] Use update-webkit script in Apply-WatchList EWS
     4        https://bugs.webkit.org/show_bug.cgi?id=201179
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/ews-build/factories.py:
     9        (WatchListFactory): Updated to use CheckOutSource step as well.
     10
    1112019-08-27  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    212
Note: See TracChangeset for help on using the changeset viewer.