Changeset 273199 in webkit


Ignore:
Timestamp:
Feb 20, 2021 9:00:21 AM (3 years ago)
Author:
aakash_jain@apple.com
Message:

Revert r272384 [Python-3] Change shebang in git-webkit
https://bugs.webkit.org/show_bug.cgi?id=221412

Unreviewed infrastructure fix.

Revert to Python 2 for git-webkit command because of auto-install issues.

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

Legend:

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

    r273145 r273199  
    184184        if not revision:
    185185            revision = 'HEAD'
    186         self.setCommand(['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', revision])
     186        self.setCommand(['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', revision])
    187187        return shell.ShellCommand.start(self)
    188188
  • trunk/Tools/CISupport/ews-build/steps_unittest.py

    r273145 r273199  
    38343834                        timeout=300,
    38353835                        logEnviron=False,
    3836                         command=['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', '51a6aec9f664']) +
     3836                        command=['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', '51a6aec9f664']) +
    38373837            ExpectShell.log('stdio', stdout='Identifier: 233175@main') +
    38383838            0,
     
    38493849                        timeout=300,
    38503850                        logEnviron=False,
    3851                         command=['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', 'HEAD']) +
     3851                        command=['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', 'HEAD']) +
    38523852            ExpectShell.log('stdio', stdout='Unexpected failure') +
    38533853            2,
  • trunk/Tools/ChangeLog

    r273194 r273199  
     12021-02-20  Aakash Jain  <aakash_jain@apple.com>
     2
     3        Revert r272384 [Python-3] Change shebang in git-webkit
     4        https://bugs.webkit.org/show_bug.cgi?id=221412
     5 
     6        Unreviewed infrastructure fix.
     7
     8        Revert to Python 2 for git-webkit command because of auto-install issues.
     9        * CISupport/ews-build/steps.py:
     10        * CISupport/ews-build/steps_unittest.py:
     11
    1122021-02-19  Chris Dumez  <cdumez@apple.com>
    213
Note: See TracChangeset for help on using the changeset viewer.