From: Laszlo Gombos Date: Sat, 6 Aug 2022 20:15:56 +0000 (+0000) Subject: ci: add glibc to the Arch Linux container X-Git-Tag: 058~205 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a5f9c5d4e0ba41ad74d67e0d70b521149a15617;p=thirdparty%2Fdracut.git ci: add glibc to the Arch Linux container tgt has a dependency on glibc --- diff --git a/test/container/Dockerfile-Arch b/test/container/Dockerfile-Arch index 922b8edec..8d8e943cb 100644 --- a/test/container/Dockerfile-Arch +++ b/test/container/Dockerfile-Arch @@ -12,12 +12,12 @@ RUN pacman --noconfirm -Sy \ linux dash strace dhclient asciidoc cpio pigz \ qemu btrfs-progs mdadm dmraid nfs-utils nfsidmap lvm2 nbd \ dhcp networkmanager multipath-tools vi tcpdump open-iscsi \ - git shfmt shellcheck astyle which base-devel && yes | pacman -Scc + git shfmt shellcheck astyle which base-devel glibc && yes | pacman -Scc RUN useradd -m build RUN su build -c 'cd && git clone https://aur.archlinux.org/perl-config-general.git && cd perl-config-general && makepkg -s --noconfirm' RUN pacman -U --noconfirm ~build/perl-config-general/*.pkg.tar.* -RUN su build -c 'cd && git clone https://aur.archlinux.org/tgt.git && cd tgt && echo "CFLAGS=-Wno-error=stringop-truncation" >> PKGBUILD && makepkg -s --noconfirm' +RUN su build -c 'cd && git clone https://aur.archlinux.org/tgt.git && cd tgt && makepkg -s --noconfirm' RUN pacman -U --noconfirm ~build/tgt/*.pkg.tar.* RUN rm -fr ~build