Increase compression on zstd packages

This commit is contained in:
Damien Elmes 2022-04-22 13:52:24 +10:00
parent e6d990a44e
commit 280c06425d

View file

@ -343,13 +343,13 @@ def build_tarball(src_path: Path, variant: str) -> None:
subprocess.run(
[
"tar",
"--zstd",
"-I",
"zstd -c --long -T0 -18",
"-cf",
dist_folder / (dest_path.name + ".tar.zst"),
dest_path.name,
],
check=True,
env=dict(ZSTD_CLEVEL="9"),
cwd=dest_path.parent,
)