summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2021-09-03 16:44:07 +0100
committerDaniel P. Berrangé <berrange@redhat.com>2021-09-03 17:05:45 +0100
commit2ef8bbf925513b13a47b99f36ef3712dcdaec7af (patch)
tree0f64808f22de4bfe79a06b4b2131208166353663
parenta04eae9d29935c02d16d317cec00f0b42dbfafb2 (diff)
downloadlibosinfo-2ef8bbf925513b13a47b99f36ef3712dcdaec7af.tar.gz
gitlab: remove centos-7 build target
This platform is no longer supported by libvirt-ci. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
-rw-r--r--.gitlab-ci.yml11
-rw-r--r--ci/containers/ci-centos-7.Dockerfile59
2 files changed, 0 insertions, 70 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7ae2e70..217c0d6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -147,11 +147,6 @@ check-dco:
- $CI_PROJECT_NAMESPACE == "libosinfo"
-centos-7-container:
- <<: *container_job_definition
- variables:
- NAME: centos-7
-
centos-8-container:
<<: *container_job_definition
variables:
@@ -218,12 +213,6 @@ ubuntu-2004-container:
NAME: ubuntu-2004
-centos-7:
- <<: *native-build-job
- variables:
- NAME: centos-7
- RPM: skip
-
centos-8:
<<: *native-build-job
variables:
diff --git a/ci/containers/ci-centos-7.Dockerfile b/ci/containers/ci-centos-7.Dockerfile
deleted file mode 100644
index bfd2e8d..0000000
--- a/ci/containers/ci-centos-7.Dockerfile
+++ /dev/null
@@ -1,59 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-# $ lcitool dockerfile centos-7 osinfo-db-tools,osinfo-db,libosinfo
-#
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/b098ec6631a85880f818f2dd25c437d509e53680
-FROM registry.centos.org/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 \
- check-devel \
- gcc \
- gettext \
- git \
- glib2-devel \
- glibc-common \
- gobject-introspection-devel \
- gtk-doc \
- hwdata \
- intltool \
- itstool \
- json-glib-devel \
- libarchive-devel \
- libsoup-devel \
- libxml2 \
- libxml2-devel \
- libxslt-devel \
- make \
- ninja-build \
- pkgconfig \
- python3 \
- python3-pip \
- python3-setuptools \
- python3-wheel \
- python36-lxml \
- python36-pytest \
- python36-requests \
- rpm-build \
- vala \
- wget \
- xz && \
- 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/$(basename /usr/bin/gcc)
-
-RUN pip3 install \
- meson==0.54.0
-
-ENV LANG "en_US.UTF-8"
-ENV MAKE "/usr/bin/make"
-ENV NINJA "/usr/bin/ninja-build"
-ENV PYTHON "/usr/bin/python3"
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"