Title: [252834] trunk/Tools
Revision
252834
Author
[email protected]
Date
2019-11-23 12:17:47 -0800 (Sat, 23 Nov 2019)

Log Message

Archive step is failing after r252827
https://bugs.webkit.org/show_bug.cgi?id=204548

Reviewed by Alexey Proskuryakov.

After https://trac.webkit.org/changeset/252827/webkit, the archive step is failing.

* BuildSlaveSupport/built-product-archive:
(createZip):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/built-product-archive (252833 => 252834)


--- trunk/Tools/BuildSlaveSupport/built-product-archive	2019-11-23 16:58:49 UTC (rev 252833)
+++ trunk/Tools/BuildSlaveSupport/built-product-archive	2019-11-23 20:17:47 UTC (rev 252834)
@@ -161,7 +161,7 @@
         command += [directoryToZip, archiveFile]
         return subprocess.call(command) or addFilesToArchive(archiveFile, PATH_TO_LAUNCHER, PATH_TO_README) 
     elif sys.platform == 'cygwin':
-        return subprocess.call(["zip", "-r", archiveFile, "bin32"], cwd=directoryToZip)
+        return subprocess.call(["zip", "-r", archiveFile, "bin64"], cwd=directoryToZip)
     elif sys.platform == 'win32':
         createZipManually(directoryToZip, archiveFile)
         return 0

Modified: trunk/Tools/ChangeLog (252833 => 252834)


--- trunk/Tools/ChangeLog	2019-11-23 16:58:49 UTC (rev 252833)
+++ trunk/Tools/ChangeLog	2019-11-23 20:17:47 UTC (rev 252834)
@@ -1,3 +1,15 @@
+2019-11-23  Per Arne Vollan  <[email protected]>
+
+        Archive step is failing after r252827
+        https://bugs.webkit.org/show_bug.cgi?id=204548
+
+        Reviewed by Alexey Proskuryakov.
+
+        After https://trac.webkit.org/changeset/252827/webkit, the archive step is failing.
+
+        * BuildSlaveSupport/built-product-archive:
+        (createZip):
+
 2019-11-23  Andres Gonzalez  <[email protected]>
 
         Run LayoutTests/accessibility/mac/primary-screen-height.html on secondary accessibility thread.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to