Skip to content

Commit c7f38c3

Browse files
tstellartru
authored andcommitted
test-release.sh: Use parallel xz for packaging the binaries
Reviewed By: amyk, dim, hans Differential Revision: https://reviews.llvm.org/D142417 (cherry picked from commit 0090488)
1 parent c39e95c commit c7f38c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/release/test-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ function package_release() {
533533
if [ "$use_gzip" = "yes" ]; then
534534
tar cf - $Package | gzip -9c > $BuildDir/$Package.tar.gz
535535
else
536-
tar cf - $Package | xz -9ce > $BuildDir/$Package.tar.xz
536+
tar cf - $Package | xz -9ce -T $NumJobs > $BuildDir/$Package.tar.xz
537537
fi
538538
mv $Package llvmCore-$Release-$RC.install/usr/local
539539
cd $cwd

0 commit comments

Comments
 (0)