Skip to content

Commit

Permalink
test-release.sh: Use parallel xz for packaging the binaries
Browse files Browse the repository at this point in the history
Reviewed By: amyk, dim, hans

Differential Revision: https://reviews.llvm.org/D142417

(cherry picked from commit 0090488)
  • Loading branch information
tstellar authored and tru committed Jan 27, 2023
1 parent c39e95c commit c7f38c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/utils/release/test-release.sh
Expand Up @@ -533,7 +533,7 @@ function package_release() {
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
Expand Down

0 comments on commit c7f38c3

Please sign in to comment.