summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorMichel Dänzer <mdaenzer@redhat.com>2020-12-03 18:11:00 +0100
committerDylan Baker <dylan.c.baker@intel.com>2020-12-07 09:20:39 -0800
commit0cde14200a49b15c4f17ab1637cb6c4caaa2296b (patch)
tree5670828ed0896820c61196eca9284f9cce4428c7 /.gitlab-ci
parentb3bfb017189892895e980282f27641fcf248da3e (diff)
ci: Drop x86_build_old image
Currently not used for anything. v2: * Drop build script as well (Eric Anholt) Fixes: a3543adc2628 "clover: set LLVM min version to 8.0.1" Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7902> (cherry picked from commit 42bc6db7e71c348594277af58975467c54eb2b19)
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/container/x86_build_old.sh69
1 files changed, 0 insertions, 69 deletions
diff --git a/.gitlab-ci/container/x86_build_old.sh b/.gitlab-ci/container/x86_build_old.sh
deleted file mode 100644
index 3343fbb2449..00000000000
--- a/.gitlab-ci/container/x86_build_old.sh
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/bash
-
-set -e
-set -o xtrace
-
-export DEBIAN_FRONTEND=noninteractive
-
-apt-get install -y \
- apt-transport-https \
- ca-certificates
-
-sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
-echo 'deb https://deb.debian.org/debian stretch-backports main' >/etc/apt/sources.list.d/backports.list
-
-apt-get update
-
-# Use newer packages from backports by default
-cat >/etc/apt/preferences <<EOF
-Package: *
-Pin: release a=stretch-backports
-Pin-Priority: 500
-EOF
-
-apt-get dist-upgrade -y
-
-apt-get install -y --no-remove \
- bison \
- bzip2 \
- ccache \
- flex \
- g++ \
- gcc \
- git \
- libclang-3.9-dev \
- libclang-4.0-dev \
- libclang-5.0-dev \
- libclang-6.0-dev \
- libclang-7-dev \
- libclc-dev \
- libdrm-dev \
- libelf-dev \
- libepoxy-dev \
- libexpat1-dev \
- libpng-dev \
- libunwind-dev \
- llvm-3.9-dev \
- llvm-4.0-dev \
- llvm-5.0-dev \
- llvm-6.0-dev \
- llvm-7-dev \
- ninja-build \
- pkg-config \
- python-mako \
- python3-mako \
- python3-pip \
- python3-setuptools \
- python3-wheel \
- scons \
- xz-utils \
- zlib1g-dev
-
-# We need at least 0.52.0, which is not in stretch
-python3 -m pip install meson>=0.52
-
-. .gitlab-ci/container/container_pre_build.sh
-
-############### Uninstall unused packages
-
-. .gitlab-ci/container/container_post_build.sh