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:46 +0100
commitc6c3d2edb14f74ed712b7d313c05021d85c9b9ea (patch)
treecd69b933a3b957939720b43e9736073021a659ea
parent2ef8bbf925513b13a47b99f36ef3712dcdaec7af (diff)
downloadlibosinfo-c6c3d2edb14f74ed712b7d313c05021d85c9b9ea.tar.gz
gitlab: remove debian-9 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.yml10
-rw-r--r--ci/containers/ci-debian-9.Dockerfile72
2 files changed, 0 insertions, 82 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 217c0d6..71cb9eb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -157,11 +157,6 @@ centos-stream-container:
variables:
NAME: centos-stream
-debian-9-container:
- <<: *container_job_definition
- variables:
- NAME: debian-9
-
debian-10-container:
<<: *container_job_definition
variables:
@@ -225,11 +220,6 @@ centos-stream:
NAME: centos-stream
RPM: skip
-debian-9:
- <<: *native-build-job
- variables:
- NAME: debian-9
-
debian-10:
<<: *native-build-job
variables:
diff --git a/ci/containers/ci-debian-9.Dockerfile b/ci/containers/ci-debian-9.Dockerfile
deleted file mode 100644
index f2d0c83..0000000
--- a/ci/containers/ci-debian-9.Dockerfile
+++ /dev/null
@@ -1,72 +0,0 @@
-FROM debian:9
-
-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 \
- check \
- chrony \
- gcc \
- gdb \
- gettext \
- git \
- gtk-doc-tools \
- hwdata \
- intltool \
- itstool \
- libarchive-dev \
- libc6-dev \
- libgirepository1.0-dev \
- libglib2.0-dev \
- libjson-glib-dev \
- libsoup2.4-dev \
- libtool \
- libtool-bin \
- libxml2-dev \
- libxml2-utils \
- libxslt1-dev \
- locales \
- lsof \
- make \
- net-tools \
- ninja-build \
- patch \
- perl \
- pkgconf \
- python3 \
- python3-lxml \
- python3-pip \
- python3-pytest \
- python3-requests \
- python3-setuptools \
- python3-wheel \
- screen \
- strace \
- sudo \
- valac \
- 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)
-
-RUN pip3 install \
- meson==0.49.0
-
-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"