summaryrefslogtreecommitdiff
path: root/ci/libvirt-ubuntu-2004.Dockerfile
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2020-04-29 13:07:48 +0100
committerDaniel P. Berrangé <berrange@redhat.com>2020-05-01 13:14:55 +0100
commit76a8346643ab4a37bd5dfc407c3f260b5b5267f9 (patch)
tree753655724efb4d5e34391f930e40124c0b5be7ff /ci/libvirt-ubuntu-2004.Dockerfile
parent7d2715c0ddcfb0794ad84330bbdd35683e474cf9 (diff)
downloadlibvirt-python-76a8346643ab4a37bd5dfc407c3f260b5b5267f9.tar.gz
gitlab: introduce CI jobs testing git master & distro libvirt
The python build needs to validate two axis - A variety of libvirt versions - A variety of python versions We get coverage for both these axis by running a build against the distro provided libvirt packages. All that is then missing is a build against the latest libvirt git master, which only needs to be run on a single distro, for which CentOS 8 is picked as a stable long life base. Reviewed-by: Andrea Bolognani <abologna@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'ci/libvirt-ubuntu-2004.Dockerfile')
-rw-r--r--ci/libvirt-ubuntu-2004.Dockerfile56
1 files changed, 56 insertions, 0 deletions
diff --git a/ci/libvirt-ubuntu-2004.Dockerfile b/ci/libvirt-ubuntu-2004.Dockerfile
new file mode 100644
index 0000000..de959f5
--- /dev/null
+++ b/ci/libvirt-ubuntu-2004.Dockerfile
@@ -0,0 +1,56 @@
+FROM ubuntu:20.04
+
+RUN export DEBIAN_FRONTEND=noninteractive && \
+ apt-get update && \
+ apt-get dist-upgrade -y && \
+ apt-get install --no-install-recommends -y \
+ autoconf \
+ automake \
+ autopoint \
+ bash \
+ bash-completion \
+ ca-certificates \
+ ccache \
+ chrony \
+ gcc \
+ gdb \
+ gettext \
+ git \
+ libc6-dev \
+ libtool \
+ libtool-bin \
+ libvirt-dev \
+ locales \
+ lsof \
+ make \
+ meson \
+ net-tools \
+ ninja-build \
+ patch \
+ perl \
+ pkgconf \
+ python3 \
+ python3-dev \
+ python3-lxml \
+ python3-nose \
+ python3-setuptools \
+ python3-wheel \
+ screen \
+ strace \
+ sudo \
+ vim && \
+ apt-get autoremove -y && \
+ apt-get autoclean -y && \
+ sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen && \
+ dpkg-reconfigure locales && \
+ mkdir -p /usr/libexec/ccache-wrappers && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/$(basename /usr/bin/gcc)
+
+ENV LANG "en_US.UTF-8"
+
+ENV MAKE "/usr/bin/make"
+ENV NINJA "/usr/bin/ninja"
+ENV PYTHON "/usr/bin/python3"
+
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"