db0108d5d8
Since the meson build system rework, the configure script prefers the git submodules over the system libraries. So we are testing compilation with capstone, fdt and libslirp as a submodule all over the place, burning CPU cycles by recompiling these third party modules and wasting some network bandwidth in the CI by cloning the submodules each time. Let's stop doing that in at least a couple of jobs and use the system libraries instead. While we're at it, also install meson in the Fedora container, since it is new enough already, so we do not need to check out the meson submodule here. Message-Id: <20210121174451.658924-1-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
118 lines
2.3 KiB
Docker
118 lines
2.3 KiB
Docker
FROM fedora:32
|
|
|
|
# Please keep this list sorted alphabetically
|
|
ENV PACKAGES \
|
|
bc \
|
|
brlapi-devel \
|
|
bzip2 \
|
|
bzip2-devel \
|
|
capstone-devel \
|
|
ccache \
|
|
clang \
|
|
cyrus-sasl-devel \
|
|
dbus-daemon \
|
|
device-mapper-multipath-devel \
|
|
diffutils \
|
|
findutils \
|
|
gcc \
|
|
gcc-c++ \
|
|
genisoimage \
|
|
gettext \
|
|
git \
|
|
glib2-devel \
|
|
glusterfs-api-devel \
|
|
gnutls-devel \
|
|
gtk3-devel \
|
|
hostname \
|
|
libaio-devel \
|
|
libasan \
|
|
libattr-devel \
|
|
libblockdev-mpath-devel \
|
|
libcap-ng-devel \
|
|
libcurl-devel \
|
|
libepoxy-devel \
|
|
libfdt-devel \
|
|
libiscsi-devel \
|
|
libjpeg-devel \
|
|
libpmem-devel \
|
|
libpng-devel \
|
|
librbd-devel \
|
|
libseccomp-devel \
|
|
libslirp-devel \
|
|
libssh-devel \
|
|
libubsan \
|
|
libudev-devel \
|
|
libusbx-devel \
|
|
libxml2-devel \
|
|
libzstd-devel \
|
|
llvm \
|
|
lzo-devel \
|
|
make \
|
|
meson \
|
|
mingw32-bzip2 \
|
|
mingw32-curl \
|
|
mingw32-glib2 \
|
|
mingw32-gmp \
|
|
mingw32-gnutls \
|
|
mingw32-gtk3 \
|
|
mingw32-libjpeg-turbo \
|
|
mingw32-libpng \
|
|
mingw32-libtasn1 \
|
|
mingw32-nettle \
|
|
mingw32-nsis \
|
|
mingw32-pixman \
|
|
mingw32-pkg-config \
|
|
mingw32-SDL2 \
|
|
mingw64-bzip2 \
|
|
mingw64-curl \
|
|
mingw64-glib2 \
|
|
mingw64-gmp \
|
|
mingw64-gnutls \
|
|
mingw64-gtk3 \
|
|
mingw64-libjpeg-turbo \
|
|
mingw64-libpng \
|
|
mingw64-libtasn1 \
|
|
mingw64-nettle \
|
|
mingw64-pixman \
|
|
mingw64-pkg-config \
|
|
mingw64-SDL2 \
|
|
nmap-ncat \
|
|
ncurses-devel \
|
|
nettle-devel \
|
|
ninja-build \
|
|
nss-devel \
|
|
numactl-devel \
|
|
perl \
|
|
perl-Test-Harness \
|
|
pixman-devel \
|
|
python3 \
|
|
python3-PyYAML \
|
|
python3-numpy \
|
|
python3-opencv \
|
|
python3-pillow \
|
|
python3-pip \
|
|
python3-sphinx \
|
|
python3-virtualenv \
|
|
rdma-core-devel \
|
|
SDL2-devel \
|
|
snappy-devel \
|
|
sparse \
|
|
spice-server-devel \
|
|
systemd-devel \
|
|
systemtap-sdt-devel \
|
|
tar \
|
|
tesseract \
|
|
tesseract-langpack-eng \
|
|
usbredir-devel \
|
|
virglrenderer-devel \
|
|
vte291-devel \
|
|
which \
|
|
xen-devel \
|
|
zlib-devel
|
|
ENV QEMU_CONFIGURE_OPTS --python=/usr/bin/python3
|
|
|
|
RUN dnf install -y $PACKAGES
|
|
RUN rpm -q $PACKAGES | sort > /packages.txt
|
|
ENV PATH $PATH:/usr/libexec/python3-sphinx/
|
|
ENV FEATURES mingw clang pyyaml asan docs
|