Changeset 271366 in webkit


Ignore:
Timestamp:
Jan 11, 2021 10:04:47 AM (3 years ago)
Author:
aakash_jain@apple.com
Message:

[build.webkit.org] Stop using deprecated addFactoryArguments method
https://bugs.webkit.org/show_bug.cgi?id=220513

Reviewed by Jonathan Bedard.

  • CISupport/build-webkit-org/steps.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/CISupport/build-webkit-org/steps.py

    r270246 r271366  
    131131        self.additionalArguments = additionalArguments
    132132        self.device_model = device_model
    133         self.addFactoryArguments(platform=platform, configuration=configuration, architecture=architecture, buildOnly=buildOnly, additionalArguments=additionalArguments, device_model=device_model)
     133        if not USE_BUILDBOT_VERSION2:
     134            self.addFactoryArguments(platform=platform, configuration=configuration, architecture=architecture, buildOnly=buildOnly, additionalArguments=additionalArguments, device_model=device_model)
    134135
    135136    def start(self):
  • trunk/Tools/ChangeLog

    r271361 r271366  
     12021-01-11  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [build.webkit.org] Stop using deprecated addFactoryArguments method
     4        https://bugs.webkit.org/show_bug.cgi?id=220513
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * CISupport/build-webkit-org/steps.py:
     9
    1102021-01-11  Aakash Jain  <aakash_jain@apple.com>
    211
Note: See TracChangeset for help on using the changeset viewer.