Skip to content

Commit e3acc2c

Browse files
committed
tests/docker/dockerfiles: Bump fedora-i386-cross to fedora 34
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 <[email protected]> Message-Id: <[email protected]> Signed-off-by: Richard Henderson <[email protected]>
1 parent 274f9a3 commit e3acc2c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/docker/dockerfiles/fedora-i386-cross.docker

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM registry.fedoraproject.org/fedora:33
1+
FROM registry.fedoraproject.org/fedora:34
2+
23
ENV PACKAGES \
34
bzip2 \
45
ccache \
@@ -19,10 +20,11 @@ ENV PACKAGES \
1920
nettle-devel.i686 \
2021
perl-Test-Harness \
2122
pixman-devel.i686 \
23+
sysprof-capture-devel.i686 \
2224
zlib-devel.i686
2325

2426
ENV QEMU_CONFIGURE_OPTS --extra-cflags=-m32 --disable-vhost-user
2527
ENV PKG_CONFIG_PATH /usr/lib/pkgconfig
2628

27-
RUN dnf install -y $PACKAGES
29+
RUN dnf update -y && dnf install -y $PACKAGES
2830
RUN rpm -q $PACKAGES | sort > /packages.txt

0 commit comments

Comments
 (0)