summaryrefslogtreecommitdiffstats
path: root/tests/docker/dockerfiles/debian9.docker
diff options
context:
space:
mode:
authorThomas Huth2020-09-25 17:40:25 +0200
committerAlex Bennée2020-10-02 13:29:15 +0200
commite3755276d1f5462fb14e25e558e50b1e477406d7 (patch)
tree075c966d10b88e75b7a27d1cf4275c3a52048bc7 /tests/docker/dockerfiles/debian9.docker
parentshippable.yml: Remove the Debian9-based MinGW cross-compiler tests (diff)
downloadqemu-e3755276d1f5462fb14e25e558e50b1e477406d7.tar.gz
qemu-e3755276d1f5462fb14e25e558e50b1e477406d7.tar.xz
qemu-e3755276d1f5462fb14e25e558e50b1e477406d7.zip
tests/docker: Remove old Debian 9 containers
We do not support Debian 9 in QEMU anymore, and the Debian 9 containers are now no longer used in the gitlab-CI. Time to remove them. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20200921174320.46062-6-thuth@redhat.com> Message-Id: <20200925154027.12672-14-alex.bennee@linaro.org>
Diffstat (limited to 'tests/docker/dockerfiles/debian9.docker')
-rw-r--r--tests/docker/dockerfiles/debian9.docker32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/docker/dockerfiles/debian9.docker b/tests/docker/dockerfiles/debian9.docker
deleted file mode 100644
index 3edb5147ef..0000000000
--- a/tests/docker/dockerfiles/debian9.docker
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Docker multiarch cross-compiler target
-#
-# This docker target is builds on Debian cross compiler targets to build distro
-# with a selection of cross compilers for building test binaries.
-#
-# On its own you can't build much but the docker-foo-cross targets
-# build on top of the base debian image.
-#
-FROM debian:stretch-slim
-
-# Duplicate deb line as deb-src
-RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
-
-# Install common build utilities
-RUN apt update && \
- DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \
- DEBIAN_FRONTEND=noninteractive eatmydata \
- apt install -y --no-install-recommends \
- bc \
- build-essential \
- ca-certificates \
- clang \
- gdb-multiarch \
- gettext \
- git \
- libncurses5-dev \
- pkg-config \
- psmisc \
- python3 \
- python3-setuptools \
- $(apt-get -s build-dep qemu | egrep ^Inst | fgrep '[all]' | cut -d\ -f2)