[PATCH] D142417: test-release.sh: Use parallel xz for packaging the binaries

Tom Stellard via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 23 16:23:54 PST 2023


tstellar created this revision.
tstellar added reviewers: thieta, amyk, dim, hans, omjavaid.
Herald added a project: All.
tstellar requested review of this revision.
Herald added a project: LLVM.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D142417

Files:
  llvm/utils/release/test-release.sh


Index: llvm/utils/release/test-release.sh
===================================================================
--- llvm/utils/release/test-release.sh
+++ llvm/utils/release/test-release.sh
@@ -512,7 +512,7 @@
     if [ "$use_gzip" = "yes" ]; then
       tar cf - $Package | gzip -9c > $BuildDir/$Package.tar.gz
     else
-      tar cf - $Package | xz -9ce > $BuildDir/$Package.tar.xz
+      tar cf - $Package | xz -9ce -T $NumJobs > $BuildDir/$Package.tar.xz
     fi
     mv $Package llvmCore-$Release-$RC.install/usr/local
     cd $cwd


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142417.491545.patch
Type: text/x-patch
Size: 536 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230124/ad3a706c/attachment.bin>


More information about the llvm-commits mailing list