From 5523b86ca34fe674e256e4722fbf6e6ffc35f0cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Tue, 1 Sep 2026 17:59:33 +0200 Subject: [PATCH] CI: use xz -T instead of pxz This flag has been supported by the regular xz tool for a while, no need for a special tool for MT decompression --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5e271912..1e78844b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -68,7 +68,7 @@ go_e2e_deps: - if [ -f modcache_e2e.tar.xz ]; then exit 0; fi - source /root/.bashrc - cd test/e2e && go mod download - - cd $GOPATH/pkg/mod/ && tar c -I "pxz -T${KUBERNETES_CPU_REQUEST}" -f $CI_PROJECT_DIR/modcache_e2e.tar.xz . + - cd $GOPATH/pkg/mod/ && tar c -I "xz -T${KUBERNETES_CPU_REQUEST}" -f $CI_PROJECT_DIR/modcache_e2e.tar.xz . artifacts: expire_in: 1 day paths: