Title: [273199] trunk/Tools
Revision
273199
Author
aakash_j...@apple.com
Date
2021-02-20 09:00:21 -0800 (Sat, 20 Feb 2021)

Log 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:

Modified Paths

Diff

Modified: trunk/Tools/CISupport/ews-build/steps.py (273198 => 273199)


--- trunk/Tools/CISupport/ews-build/steps.py	2021-02-20 14:18:45 UTC (rev 273198)
+++ trunk/Tools/CISupport/ews-build/steps.py	2021-02-20 17:00:21 UTC (rev 273199)
@@ -183,7 +183,7 @@
         revision = self.getProperty('ews_revision', self.getProperty('got_revision'))
         if not revision:
             revision = 'HEAD'
-        self.setCommand(['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', revision])
+        self.setCommand(['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', revision])
         return shell.ShellCommand.start(self)
 
     def evaluateCommand(self, cmd):

Modified: trunk/Tools/CISupport/ews-build/steps_unittest.py (273198 => 273199)


--- trunk/Tools/CISupport/ews-build/steps_unittest.py	2021-02-20 14:18:45 UTC (rev 273198)
+++ trunk/Tools/CISupport/ews-build/steps_unittest.py	2021-02-20 17:00:21 UTC (rev 273199)
@@ -3833,7 +3833,7 @@
             ExpectShell(workdir='wkdir',
                         timeout=300,
                         logEnviron=False,
-                        command=['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', '51a6aec9f664']) +
+                        command=['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', '51a6aec9f664']) +
             ExpectShell.log('stdio', stdout='Identifier: 233175@main') +
             0,
         )
@@ -3848,7 +3848,7 @@
             ExpectShell(workdir='wkdir',
                         timeout=300,
                         logEnviron=False,
-                        command=['python3', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', 'HEAD']) +
+                        command=['python', 'Tools/Scripts/git-webkit', '-C', 'https://github.com/WebKit/Webkit', 'find', 'HEAD']) +
             ExpectShell.log('stdio', stdout='Unexpected failure') +
             2,
         )

Modified: trunk/Tools/ChangeLog (273198 => 273199)


--- trunk/Tools/ChangeLog	2021-02-20 14:18:45 UTC (rev 273198)
+++ trunk/Tools/ChangeLog	2021-02-20 17:00:21 UTC (rev 273199)
@@ -1,3 +1,14 @@
+2021-02-20  Aakash Jain  <aakash_j...@apple.com>
+
+        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:
+
 2021-02-19  Chris Dumez  <cdu...@apple.com>
 
         Review remaining usage of autorelease to make sure it is necessary
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to