Use pigz instead of gzip

This commit is contained in:
Johan Gunnarsson 2021-08-12 19:31:01 +02:00
parent faa16d3ac4
commit 7c477085f3
4 changed files with 4 additions and 2 deletions

View File

@ -40,6 +40,7 @@ jobs:
make \
mtools \
parted \
pigz \
pwgen \
python2-dev \
python3-dev \

View File

@ -16,6 +16,7 @@ RUN apt-get update && \
git \
bc \
bzip2 \
pigz \
bison \
flex \
python2-dev \

View File

@ -35,5 +35,5 @@ qemu*)
esac
truncate -s 32M tmp.img
gzip tmp.img
pigz tmp.img
cp tmp.img.gz "${ARTIFACTS_DIR:-/artifacts}/boot-${BOARD_ID}.bin.gz"

View File

@ -141,6 +141,6 @@ cp files.txt "${ARTIFACTS_DIR:-/artifacts}/${OS}-${DIST}-${ARCH}-${PASSWORD}.bin
rm -f ext4.img
fallocate -l 1874MiB ext4.img
mkfs.ext4 -d debian ext4.img
gzip ext4.img
pigz ext4.img
cp -v ext4.img.gz "${ARTIFACTS_DIR:-/artifacts}/${OS}-${DIST}-${ARCH}-${PASSWORD}.bin.gz"