Title: [269130] trunk/Tools
Revision
269130
Author
[email protected]
Date
2020-10-28 17:02:24 -0700 (Wed, 28 Oct 2020)

Log Message

[build.webkit.org] Use -q and -o while unzipping layout-test-results.zip
https://bugs.webkit.org/show_bug.cgi?id=218230

Reviewed by Jonathan Bedard.

* CISupport/build-webkit-org/steps.py:
(ExtractTestResults.start):

Modified Paths

Diff

Modified: trunk/Tools/CISupport/build-webkit-org/steps.py (269129 => 269130)


--- trunk/Tools/CISupport/build-webkit-org/steps.py	2020-10-29 00:00:17 UTC (rev 269129)
+++ trunk/Tools/CISupport/build-webkit-org/steps.py	2020-10-29 00:02:24 UTC (rev 269130)
@@ -1057,7 +1057,9 @@
         return self.build.getProperties().render(self.resultDirectory).replace("public_html/", "/") + "/"
 
     def start(self):
-        self.command = ["unzip", self.build.getProperties().render(self.zipFile), "-d", self.build.getProperties().render(self.resultDirectory)]
+        self.zipfile = self.build.getProperties().render(self.zipFile)
+        self.resultDirectory = self.build.getProperties().render(self.resultDirectory)
+        self.command = ['unzip', '-q', '-o', self.zipfile, '-d', self.resultDirectory]
         return master.MasterShellCommand.start(self)
 
     def addCustomURLs(self):

Modified: trunk/Tools/ChangeLog (269129 => 269130)


--- trunk/Tools/ChangeLog	2020-10-29 00:00:17 UTC (rev 269129)
+++ trunk/Tools/ChangeLog	2020-10-29 00:02:24 UTC (rev 269130)
@@ -1,5 +1,15 @@
 2020-10-28  Aakash Jain  <[email protected]>
 
+        [build.webkit.org] Use -q and -o while unzipping layout-test-results.zip
+        https://bugs.webkit.org/show_bug.cgi?id=218230
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/build-webkit-org/steps.py:
+        (ExtractTestResults.start):
+
+2020-10-28  Aakash Jain  <[email protected]>
+
         Rename build.webkit.org-config directory to build-webkit-org
         https://bugs.webkit.org/show_bug.cgi?id=218302
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to