Skip to content

Commit

Permalink
ci: ensure pigz is installed in the CI containers
Browse files Browse the repository at this point in the history
pigz speeds up things considerably. Although pigz is already installed
by default, explicitely adding it makes sure, it will not disappear
unnoticed.
  • Loading branch information
haraldh committed May 12, 2021
1 parent e0c0791 commit 8056869
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions test/container/Dockerfile-Fedora-33
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ RUN echo 'export DRACUT_NO_XATTR=1 KVERSION=$(cd /lib/modules; ls -1 | tail -1)'
# Install needed packages for the dracut CI container
RUN dnf -y install --setopt=install_weak_deps=False \
dash \
pigz \
asciidoc \
mdadm \
lvm2 \
Expand Down
1 change: 1 addition & 0 deletions test/container/Dockerfile-Fedora-34
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ RUN echo 'export DRACUT_NO_XATTR=1 KVERSION=$(cd /lib/modules; ls -1 | tail -1)'
# Install needed packages for the dracut CI container
RUN dnf -y install --setopt=install_weak_deps=False \
dash \
pigz \
asciidoc \
mdadm \
lvm2 \
Expand Down
1 change: 1 addition & 0 deletions test/container/Dockerfile-Fedora-latest
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ RUN echo 'export DRACUT_NO_XATTR=1 KVERSION=$(cd /lib/modules; ls -1 | tail -1)'
# Install needed packages for the dracut CI container
RUN dnf -y install --setopt=install_weak_deps=False \
dash \
pigz \
asciidoc \
mdadm \
lvm2 \
Expand Down
2 changes: 1 addition & 1 deletion test/container/Dockerfile-OpenSuse-latest
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN dnf -y install --setopt=install_weak_deps=False \
strace libkmod-devel gcc bzip2 xz tar wget rpm-build make git bash-completion \
sudo kernel dhcp-client qemu-kvm /usr/bin/qemu-system-$(uname -m) e2fsprogs \
tcpdump iproute iputils kbd NetworkManager btrfsprogs tgt dbus-broker \
iscsiuio open-iscsi which ShellCheck procps \
iscsiuio open-iscsi which ShellCheck procps pigz \
&& dnf -y update && dnf clean all

RUN shfmt_version=3.2.4; wget "https://github.com/mvdan/sh/releases/download/v${shfmt_version}/shfmt_v${shfmt_version}_linux_amd64" -O /usr/local/bin/shfmt \
Expand Down

0 comments on commit 8056869

Please sign in to comment.