
For unknown and unrepeatable reasons, the cross-i386-tci test has started failing. "Fix" this by updating the container to use fedora 34. Add sysprof-capture-devel as a new dependency of glib2-devel that was not correctly spelled out in the rpm rules. Use dnf update Just In Case -- there are presently out-of-date packages in the upstream docker registry. Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20211005205846.153724-1-richard.henderson@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
31 lines
666 B
Docker
31 lines
666 B
Docker
FROM registry.fedoraproject.org/fedora:34
|
|
|
|
ENV PACKAGES \
|
|
bzip2 \
|
|
ccache \
|
|
diffutils \
|
|
findutils \
|
|
gcc \
|
|
git \
|
|
libffi-devel.i686 \
|
|
libtasn1-devel.i686 \
|
|
libzstd-devel.i686 \
|
|
make \
|
|
meson \
|
|
ninja-build \
|
|
glib2-devel.i686 \
|
|
glibc-devel.i686 \
|
|
glibc-static.i686 \
|
|
gnutls-devel.i686 \
|
|
nettle-devel.i686 \
|
|
perl-Test-Harness \
|
|
pixman-devel.i686 \
|
|
sysprof-capture-devel.i686 \
|
|
zlib-devel.i686
|
|
|
|
ENV QEMU_CONFIGURE_OPTS --extra-cflags=-m32 --disable-vhost-user
|
|
ENV PKG_CONFIG_PATH /usr/lib/pkgconfig
|
|
|
|
RUN dnf update -y && dnf install -y $PACKAGES
|
|
RUN rpm -q $PACKAGES | sort > /packages.txt
|