qemu/tests/docker/dockerfiles/centos7.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

42 lines
783 B
Docker

FROM centos:7
RUN yum install -y epel-release centos-release-xen-48
RUN yum -y update
# Please keep this list sorted alphabetically
ENV PACKAGES \
bzip2 \
bzip2-devel \
ccache \
csnappy-devel \
dbus-daemon \
gcc-c++ \
gcc \
gettext \
git \
glib2-devel \
gnutls-devel \
libaio-devel \
libepoxy-devel \
libfdt-devel \
libgcrypt-devel \
librdmacm-devel \
libzstd-devel \
lzo-devel \
make \
mesa-libEGL-devel \
mesa-libgbm-devel \
nettle-devel \
perl-Test-Harness \
pixman-devel \
python3 \
SDL-devel \
spice-glib-devel \
spice-server-devel \
tar \
vte-devel \
xen-devel \
zlib-devel
RUN yum install -y $PACKAGES
RUN rpm -q $PACKAGES | sort > /packages.txt