From afdfa3c7d42c5ea699d2d9a165ca58e22f6c3be5 Mon Sep 17 00:00:00 2001 From: Andrew Berry Date: Mon, 23 Sep 2024 09:10:05 -0400 Subject: [PATCH] Enable multiple threads with xz (#692) --- tasks/snapshot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/snapshot.yml b/tasks/snapshot.yml index 176ffa36..b90e44cd 100644 --- a/tasks/snapshot.yml +++ b/tasks/snapshot.yml @@ -63,7 +63,7 @@ tasks: git config user.email 'no-reply@lullabot.com' git config user.name 'Lullabot Drainpipe' git commit --quiet --message "Initial commit" --no-gpg-sign - git config tar.tar.xz.command "xz -c" + git config tar.tar.xz.command "xz --stdout --threads=0" git config tar.tar.bz2.command "bzip2 -c" git -C $TMP_DIR archive -o "$DESTINATION" HEAD test -f "$DESTINATION"