summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2020-05-22 19:58:50 -0700
committerEric Engestrom <eric@engestrom.ch>2020-07-08 19:31:15 +0200
commitf1cd8a344e5b0f48ef497ca1d2359259ecd348da (patch)
treef650d51f27814d1626699d8456652b5c7f060c0e /.gitlab-ci
parent73a0d3e75e128e54dc7b45b7a396b8c14310f9bc (diff)
ci: Don't build an arm_test container now that the last user is gone.
db410c and cheza used to use it, and now both are on baremetal. Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com> (cherry picked from commit 9c9ade468598e9c177612e5fc0860aa8b9b39b1d) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5548>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/container/arm_test.sh72
1 files changed, 0 insertions, 72 deletions
diff --git a/.gitlab-ci/container/arm_test.sh b/.gitlab-ci/container/arm_test.sh
deleted file mode 100644
index 36f85490b1b..00000000000
--- a/.gitlab-ci/container/arm_test.sh
+++ /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