ci: Don't build an arm_test container now that the last user is gone.
authorEric Anholt <eric@anholt.net>
Sat, 23 May 2020 02:58:50 +0000 (19:58 -0700)
committerMarge Bot <eric+marge@anholt.net>
Fri, 29 May 2020 16:46:44 +0000 (16:46 +0000)
db410c and cheza used to use it, and now both are on baremetal.

Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5247>

.gitlab-ci.yml
.gitlab-ci/container/arm_test.sh [deleted file]

index c5b2e4e..0633e74 100644 (file)
@@ -217,22 +217,6 @@ x86_cross_arm_test:
   needs:
     - x86_cross_arm_test
 
-
-# Debian 10 based ARM test image
-arm_test:
-  extends: arm_build
-  variables:
-    FDO_DISTRIBUTION_TAG: &arm_test "2020-03-18-jflags"
-
-.use-arm_test:
-  variables:
-    TAG: *arm_test
-  image: "$CI_REGISTRY_IMAGE/debian/arm_test:$TAG"
-  needs:
-    - arm_build
-    - meson-arm64
-    - arm_test
-
 # Native Windows docker builds
 # 
 # Unlike the above Linux-based builds - including MinGW/SCons builds which
diff --git a/.gitlab-ci/container/arm_test.sh b/.gitlab-ci/container/arm_test.sh
deleted file mode 100644 (file)
index 36f8549..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/bin/bash
-
-set -e
-set -o xtrace
-
-############### Install packages for building
-apt-get -y install ca-certificates
-sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
-echo 'deb https://deb.debian.org/debian buster-backports main' >/etc/apt/sources.list.d/backports.list
-apt-get update
-apt-get -y install \
-       bzip2 \
-       ccache \
-       cmake \
-       g++ \
-       gcc \
-       git \
-       libc6-dev \
-       libdrm-nouveau2 \
-       libexpat1 \
-       libgbm-dev \
-       libgbm-dev \
-       libgles2-mesa-dev \
-       libllvm8 \
-       libpng16-16 \
-       libpng-dev \
-       libvulkan-dev \
-       libvulkan1 \
-       meson \
-       netcat \
-       pkg-config \
-       procps \
-       python \
-       python3-distutils \
-       waffle-utils \
-       wget \
-       zlib1g
-
-. .gitlab-ci/container/container_pre_build.sh
-
-############### Build dEQP runner
-
-. .gitlab-ci/build-cts-runner.sh
-
-############### Build dEQP GL
-
-. .gitlab-ci/build-deqp-gl.sh
-
-
-############### Uninstall the build software
-
-ccache --show-stats
-
-apt-get purge -y \
-        bzip2 \
-        ccache \
-        cmake \
-        g++ \
-        gcc \
-        git \
-        libc6-dev \
-        libgbm-dev \
-        libgles2-mesa-dev \
-        libpng-dev \
-        libvulkan-dev \
-        meson \
-        pkg-config \
-        python \
-        python3-distutils \
-        wget
-
-apt-get autoremove -y --purge