diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-05 13:50:49 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-05 13:50:49 +0100 |
commit | 09af1dfd3b48059ab81fafdf95a72ce0d3624fb2 (patch) | |
tree | d1013bf298b1957177b85dd9803e5dfd7d887e78 | |
parent | 05e8bd33224a76bbe9bb0b7edb0ef5fcd4a010a8 (diff) | |
download | imagefish-09af1dfd3b48059ab81fafdf95a72ce0d3624fb2.tar.gz |
fix tree call, parallel compression
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 36c0640..3eb41dc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,8 +9,8 @@ fedora: - dnf install -y /usr/bin/guestfish /usr/bin/xz script: - ./Fedora-efi-grub2.sh - - xz --verbose *.qcow2 - - tree -s -h -t "fedora images" -I "*.qcow2.xz" -H "$CI_JOB_URL/artifacts/file/" . > index.html + - xz --threads=0 --verbose *.qcow2 + - tree -s -h -T "fedora images" -I "*.qcow2.xz" -H "$CI_JOB_URL/artifacts/file/" . > index.html artifacts: paths: - fedora-*.qcow2.xz |