da9000784c
Bios bits avocado tests need mformat (provided by the mtools package) and xorriso tools in order to run within gitlab CI containers. Add those dependencies within the Dockerfiles so that containers can be built with those tools present and bios bits avocado tests can be run there. xorriso package conflicts with genisoimage package on some distributions. Therefore, it is not possible to have both the packages at the same time in the container image uniformly for all distribution flavors. Further, on some distributions like RHEL, both xorriso and genisoimage packages provide /usr/bin/genisoimage and on some other distributions like Fedora, only genisoimage package provides the same utility. Therefore, this change removes the dependency on geninsoimage for building container images altogether keeping only xorriso package. At the same time, cdrom-test.c is updated to use and check for existence of only xorrisofs. Signed-off-by: Ani Sinha <anisinha@redhat.com> Message-Id: <20230504154611.85854-3-anisinha@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
147 lines
3.7 KiB
Docker
147 lines
3.7 KiB
Docker
# THIS FILE WAS AUTO-GENERATED
|
|
#
|
|
# $ lcitool dockerfile --layers all centos-stream-8 qemu
|
|
#
|
|
# https://gitlab.com/libvirt/libvirt-ci
|
|
|
|
FROM quay.io/centos/centos:stream8
|
|
|
|
RUN dnf distro-sync -y && \
|
|
dnf install 'dnf-command(config-manager)' -y && \
|
|
dnf config-manager --set-enabled -y powertools && \
|
|
dnf install -y centos-release-advanced-virtualization && \
|
|
dnf install -y epel-release && \
|
|
dnf install -y epel-next-release && \
|
|
dnf install -y \
|
|
SDL2-devel \
|
|
alsa-lib-devel \
|
|
bash \
|
|
bc \
|
|
bison \
|
|
brlapi-devel \
|
|
bzip2 \
|
|
bzip2-devel \
|
|
ca-certificates \
|
|
capstone-devel \
|
|
ccache \
|
|
clang \
|
|
ctags \
|
|
cyrus-sasl-devel \
|
|
daxctl-devel \
|
|
dbus-daemon \
|
|
device-mapper-multipath-devel \
|
|
diffutils \
|
|
findutils \
|
|
flex \
|
|
fuse3-devel \
|
|
gcc \
|
|
gcc-c++ \
|
|
gettext \
|
|
git \
|
|
glib2-devel \
|
|
glib2-static \
|
|
glibc-langpack-en \
|
|
glibc-static \
|
|
glusterfs-api-devel \
|
|
gnutls-devel \
|
|
gtk3-devel \
|
|
hostname \
|
|
jemalloc-devel \
|
|
json-c-devel \
|
|
libaio-devel \
|
|
libasan \
|
|
libattr-devel \
|
|
libbpf-devel \
|
|
libcacard-devel \
|
|
libcap-ng-devel \
|
|
libcmocka-devel \
|
|
libcurl-devel \
|
|
libdrm-devel \
|
|
libepoxy-devel \
|
|
libfdt-devel \
|
|
libffi-devel \
|
|
libgcrypt-devel \
|
|
libiscsi-devel \
|
|
libjpeg-devel \
|
|
libnfs-devel \
|
|
libpmem-devel \
|
|
libpng-devel \
|
|
librbd-devel \
|
|
libseccomp-devel \
|
|
libselinux-devel \
|
|
libslirp-devel \
|
|
libssh-devel \
|
|
libtasn1-devel \
|
|
libubsan \
|
|
liburing-devel \
|
|
libusbx-devel \
|
|
libzstd-devel \
|
|
llvm \
|
|
lttng-ust-devel \
|
|
lzo-devel \
|
|
make \
|
|
mesa-libgbm-devel \
|
|
mtools \
|
|
ncurses-devel \
|
|
nettle-devel \
|
|
ninja-build \
|
|
nmap-ncat \
|
|
numactl-devel \
|
|
openssh-clients \
|
|
pam-devel \
|
|
pcre-static \
|
|
pixman-devel \
|
|
pkgconfig \
|
|
pulseaudio-libs-devel \
|
|
python38 \
|
|
python38-PyYAML \
|
|
python38-numpy \
|
|
python38-pip \
|
|
python38-setuptools \
|
|
python38-wheel \
|
|
rdma-core-devel \
|
|
sed \
|
|
snappy-devel \
|
|
socat \
|
|
spice-protocol \
|
|
spice-server-devel \
|
|
systemd-devel \
|
|
systemtap-sdt-devel \
|
|
tar \
|
|
usbredir-devel \
|
|
util-linux \
|
|
virglrenderer-devel \
|
|
vte291-devel \
|
|
which \
|
|
xfsprogs-devel \
|
|
xorriso \
|
|
zlib-devel \
|
|
zlib-static \
|
|
zstd && \
|
|
dnf autoremove -y && \
|
|
dnf clean all -y && \
|
|
rpm -qa | sort > /packages.txt && \
|
|
mkdir -p /usr/libexec/ccache-wrappers && \
|
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/c++ && \
|
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
|
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/clang && \
|
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/g++ && \
|
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
|
|
|
|
RUN /usr/bin/pip3.8 install \
|
|
meson==0.63.2 \
|
|
pillow \
|
|
sphinx \
|
|
sphinx-rtd-theme
|
|
|
|
ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
|
|
ENV LANG "en_US.UTF-8"
|
|
ENV MAKE "/usr/bin/make"
|
|
ENV NINJA "/usr/bin/ninja"
|
|
ENV PYTHON "/usr/bin/python3.8"
|
|
# As a final step configure the user (if env is defined)
|
|
ARG USER
|
|
ARG UID
|
|
RUN if [ "${USER}" ]; then \
|
|
id ${USER} 2>/dev/null || useradd -u ${UID} -U ${USER}; fi
|