Title: [230790] trunk/Tools
Revision
230790
Author
[email protected]
Date
2018-04-18 16:40:36 -0700 (Wed, 18 Apr 2018)

Log Message

Buildbots using Python zipfile should enable compression
https://bugs.webkit.org/show_bug.cgi?id=184759

Reviewed by Lucas Forschler.

* BuildSlaveSupport/built-product-archive:
(createZipManually):
Default is to archive without compressing, so tell it to compress as well.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/built-product-archive (230789 => 230790)


--- trunk/Tools/BuildSlaveSupport/built-product-archive	2018-04-18 22:27:20 UTC (rev 230789)
+++ trunk/Tools/BuildSlaveSupport/built-product-archive	2018-04-18 23:40:36 UTC (rev 230790)
@@ -129,7 +129,7 @@
 
 
 def createZipManually(directoryToZip, archiveFile):
-    archiveZip = zipfile.ZipFile(archiveFile, "w")
+    archiveZip = zipfile.ZipFile(archiveFile, "w", zipfile.ZIP_DEFLATED)
 
     for path, dirNames, fileNames in os.walk(directoryToZip):
         relativePath = os.path.relpath(path, directoryToZip)

Modified: trunk/Tools/ChangeLog (230789 => 230790)


--- trunk/Tools/ChangeLog	2018-04-18 22:27:20 UTC (rev 230789)
+++ trunk/Tools/ChangeLog	2018-04-18 23:40:36 UTC (rev 230790)
@@ -1,3 +1,14 @@
+2018-04-18  Ross Kirsling  <[email protected]>
+
+        Buildbots using Python zipfile should enable compression
+        https://bugs.webkit.org/show_bug.cgi?id=184759
+
+        Reviewed by Lucas Forschler.
+
+        * BuildSlaveSupport/built-product-archive:
+        (createZipManually):
+        Default is to archive without compressing, so tell it to compress as well. 
+
 2018-04-18  Nan Wang  <[email protected]>
 
         AX: [macOS] WebKit hangs when triggering an alert from an AOM increment event
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to