qemu/tests/docker/dockerfiles/centos8.docker
Daniel P. Berrangé affcc09c2d gitlab: expand test coverage for crypto builds
Most jobs test the latest nettle library. This adds explicit coverage
for latest gcrypt using Fedora, and old gcrypt and nettle using
CentOS-7. The latter does a minimal tools-only build, as we only need to
validate that the crypto code builds and unit tests pass. Finally a job
disabling both nettle and gcrypt is provided to validate that gnutls
still works.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20200901133050.381844-3-berrange@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
2020-09-07 12:34:17 +02:00

32 lines
538 B
Docker

FROM centos:8.1.1911
RUN dnf -y update
ENV PACKAGES \
SDL-devel \
bzip2 \
bzip2-devel \
dbus-daemon \
gcc \
gcc-c++ \
gettext \
git \
glib2-devel \
libaio-devel \
libepoxy-devel \
libgcrypt-devel \
lzo-devel \
make \
mesa-libEGL-devel \
nettle-devel \
perl-Test-Harness \
pixman-devel \
python36 \
rdma-core-devel \
spice-glib-devel \
spice-server \
tar \
zlib-devel
RUN dnf install -y $PACKAGES
RUN rpm -q $PACKAGES | sort > /packages.txt