WebKit Bugzilla
Attachment 373688 Details for
Bug 199605
: [ews-build] Do not run unix commands for windows in PrintConfiguration
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-199605-20190708214642.patch (text/plain), 1.51 KB, created by
Aakash Jain
on 2019-07-08 18:46:43 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-07-08 18:46:43 PDT
Size:
1.51 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 247246) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,12 @@ >+2019-07-08 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-build] Do not run unix commands for windows in PrintConfiguration >+ https://bugs.webkit.org/show_bug.cgi?id=199605 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-build/steps.py: >+ > 2019-07-08 Fujii Hironori <Hironori.Fujii@sony.com> > > JSTestGlobalObject.cpp of bindings-generation-tests is failing for Windows Python >Index: Tools/BuildSlaveSupport/ews-build/steps.py >=================================================================== >--- Tools/BuildSlaveSupport/ews-build/steps.py (revision 247233) >+++ Tools/BuildSlaveSupport/ews-build/steps.py (working copy) >@@ -1221,11 +1221,9 @@ class PrintConfiguration(steps.ShellSequ > flunkOnFailure = False > warnOnFailure = False > logEnviron = False >- command_list_generic = [['hostname'], >- ['df', '-hl'], >- ['date']] >- command_list_apple = [['sw_vers'], ['xcodebuild', '-sdk', '-version']] >- command_list_linux = [['uname', '-a']] >+ command_list_generic = [['hostname']] >+ command_list_apple = [['df', '-hl'], ['date'], ['sw_vers'], ['xcodebuild', '-sdk', '-version']] >+ command_list_linux = [['df', '-hl'], ['date'], ['uname', '-a']] > command_list_win = [[]] # TODO: add windows specific commands here > > def __init__(self, **kwargs):
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
jbedard
:
review+
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 199605
:
373688
|
373721