summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2021-05-25 11:01:53 +0100
committerDaniel P. Berrangé <berrange@redhat.com>2021-05-25 11:01:53 +0100
commit333af99d7d314ea3c2d97b14a5d4ba6e014c03a0 (patch)
treefe2f7a26b5d94879eb63da61d21ea16322e4ca25 /ci
parentf234192eb0f8773b5d4b1df78d42517970f1021e (diff)
downloadlibvirt-python-333af99d7d314ea3c2d97b14a5d4ba6e014c03a0.tar.gz
gitlab: drop centos-7 container and build
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'ci')
-rw-r--r--ci/containers/ci-centos-7.Dockerfile35
1 files changed, 0 insertions, 35 deletions
diff --git a/ci/containers/ci-centos-7.Dockerfile b/ci/containers/ci-centos-7.Dockerfile
deleted file mode 100644
index f3ec402..0000000
--- a/ci/containers/ci-centos-7.Dockerfile
+++ /dev/null
@@ -1,35 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-# $ lcitool dockerfile centos-7 libvirt+dist,libvirt-python
-#
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/12ad4d56d2d3a3c77ae957b2a49d34758fb3e614
-
-FROM docker.io/library/centos:7
-
-RUN yum update -y && \
- echo 'skip_missing_names_on_install=0' >> /etc/yum.conf && \
- yum install -y epel-release && \
- yum install -y \
- ca-certificates \
- ccache \
- gcc \
- git \
- glibc-common \
- libvirt-devel \
- pkgconfig \
- python3 \
- python3-setuptools \
- python36-devel \
- python36-lxml \
- python36-pytest \
- rpm-build && \
- yum autoremove -y && \
- yum clean all -y && \
- rpm -qa | sort > /packages.txt && \
- 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/gcc
-
-ENV LANG "en_US.UTF-8"
-ENV PYTHON "/usr/bin/python3"
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"