Changeset 264626 in webkit
- Timestamp:
- Jul 20, 2020, 3:38:40 PM (5 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/BuildSlaveSupport/ews-build/steps.py
r264327 r264626 2415 2415 self.zipFile = Interpolate('public_html/results/%(prop:buildername)s/r%(prop:patch_id)s-%(prop:buildnumber)s{}.zip'.format(identifier)) 2416 2416 self.resultDirectory = Interpolate('public_html/results/%(prop:buildername)s/r%(prop:patch_id)s-%(prop:buildnumber)s{}'.format(identifier)) 2417 self.command = ['unzip', self.zipFile, '-d', self.resultDirectory]2417 self.command = ['unzip', '-q', self.zipFile, '-d', self.resultDirectory] 2418 2418 2419 2419 master.MasterShellCommand.__init__(self, command=self.command, logEnviron=False) -
trunk/Tools/BuildSlaveSupport/ews-build/steps_unittest.py
r264229 r264626 3051 3051 self.expectLocalCommands( 3052 3052 ExpectMasterShellCommand(command=['unzip', 3053 '-q', 3053 3054 'public_html/results/macOS-Sierra-Release-WK2-Tests-EWS/r1234-12.zip', 3054 3055 '-d', … … 3069 3070 self.expectLocalCommands( 3070 3071 ExpectMasterShellCommand(command=['unzip', 3072 '-q', 3071 3073 'public_html/results/iOS-12-Simulator-WK2-Tests-EWS/r1234-12-rerun.zip', 3072 3074 '-d', … … 3087 3089 self.expectLocalCommands( 3088 3090 ExpectMasterShellCommand(command=['unzip', 3091 '-q', 3089 3092 'public_html/results/macOS-Sierra-Release-WK2-Tests-EWS/r1234-12.zip', 3090 3093 '-d', -
trunk/Tools/ChangeLog
r264621 r264626 1 2020-07-20 Aakash Jain <aakash_jain@apple.com> 2 3 [ews] Use -q while unzipping layout-test-results.zip 4 https://bugs.webkit.org/show_bug.cgi?id=214571 5 6 Reviewed by Jonathan Bedard. 7 8 * BuildSlaveSupport/ews-build/steps.py: 9 * BuildSlaveSupport/ews-build/steps_unittest.py: 10 1 11 2020-07-20 Keith Miller <keith_miller@apple.com> 2 12
Note:
See TracChangeset
for help on using the changeset viewer.