ci: Move ARM rootfses to stable
[mesa.git] / .gitlab-ci / container / arm_test-base.sh
1 #!/bin/bash
2
3 set -e
4 set -o xtrace
5
6 ############### Install packages for building
7 apt-get install -y ca-certificates
8 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
9 echo 'deb https://deb.debian.org/debian buster-backports main' >/etc/apt/sources.list.d/backports.list
10 apt-get update
11
12 apt-get install -y --no-remove \
13 abootimg \
14 android-sdk-ext4-utils \
15 bc \
16 bison \
17 bzip2 \
18 ccache \
19 cmake \
20 cpio \
21 g++ \
22 debootstrap \
23 fastboot \
24 flex \
25 git \
26 netcat \
27 python3-distutils \
28 python3-minimal \
29 python3-serial \
30 python3.7 \
31 pkg-config \
32 procps \
33 rsync \
34 u-boot-tools \
35 unzip
36
37 apt install -t buster-backports -y --no-remove \
38 meson
39
40 . .gitlab-ci/container/container_post_build.sh