Changeset 264327 in webkit


Ignore:
Timestamp:
Jul 13, 2020, 5:59:05 PM (5 years ago)
Author:
aakash_jain@apple.com
Message:

Add EWS queues for tvOS and watchOS builders (follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=214147
<rdar://problem/65290635>

Unreviewed follow-up fix.

  • BuildSlaveSupport/ews-build/steps.py:

(CompileWebKit.start): Added tvos and watchos.

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r264229 r264327  
    12901290        if platform in ('mac', 'ios', 'tvos', 'watchos') and architecture:
    12911291            self.setCommand(self.command + ['ARCHS=' + architecture])
    1292             if platform == 'ios':
     1292            if platform in ['ios', 'tvos', 'watchos']:
    12931293                self.setCommand(self.command + ['ONLY_ACTIVE_ARCH=NO'])
    12941294        if platform in ('mac', 'ios', 'tvos', 'watchos') and buildOnly:
  • trunk/Tools/ChangeLog

    r264315 r264327  
     12020-07-13  Aakash Jain  <aakash_jain@apple.com>
     2
     3        Add EWS queues for tvOS and watchOS builders (follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=214147
     5        <rdar://problem/65290635>
     6
     7        Unreviewed follow-up fix.
     8
     9        * BuildSlaveSupport/ews-build/steps.py:
     10        (CompileWebKit.start): Added tvos and watchos.
     11
    1122020-07-13  Geoffrey Garen  <ggaren@apple.com>
    213
Note: See TracChangeset for help on using the changeset viewer.