Changeset 272384 in webkit


Ignore:
Timestamp:
Feb 4, 2021 1:59:00 PM (3 years ago)
Author:
Jonathan Bedard
Message:

[Python-3] Change shebang in git-webkit (Part 2)
https://bugs.webkit.org/show_bug.cgi?id=221412
<rdar://problem/73983881>

Reviewed by Michael Catanzaro.

  • CISupport/ews-build/steps.py:

(ShowIdentifier.start): Invoke git-webkit with Python 3.

  • CISupport/ews-build/steps_unittest.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

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

    r272380 r272384  
    180180        if not revision:
    181181            revision = 'HEAD'
    182         self.setCommand(['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', revision])
     182        self.setCommand(['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', revision])
    183183        return shell.ShellCommand.start(self)
    184184
  • trunk/Tools/CISupport/ews-build/steps_unittest.py

    r272380 r272384  
    37873787                        timeout=300,
    37883788                        logEnviron=False,
    3789                         command=['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', '51a6aec9f664']) +
     3789                        command=['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', '51a6aec9f664']) +
    37903790            ExpectShell.log('stdio', stdout='Identifier: 233175@main') +
    37913791            0,
     
    38023802                        timeout=300,
    38033803                        logEnviron=False,
    3804                         command=['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', 'HEAD']) +
     3804                        command=['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', 'HEAD']) +
    38053805            ExpectShell.log('stdio', stdout='Unexpected failure') +
    38063806            2,
  • trunk/Tools/ChangeLog

    r272383 r272384  
     12021-02-04  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [Python-3] Change shebang in git-webkit (Part 2)
     4        https://bugs.webkit.org/show_bug.cgi?id=221412
     5        <rdar://problem/73983881>
     6
     7        Reviewed by Michael Catanzaro.
     8
     9        * CISupport/ews-build/steps.py:
     10        (ShowIdentifier.start): Invoke git-webkit with Python 3.
     11        * CISupport/ews-build/steps_unittest.py:
     12
    1132021-02-04  Alex Christensen  <achristensen@webkit.org>
    214
Note: See TracChangeset for help on using the changeset viewer.