summaryrefslogtreecommitdiff
path: root/.gitlab-ci/debian-install.sh
blob: b2f1a791ac32866803d53771e792facbbe8073e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env bash
set -o errexit
set -o xtrace

export DEBIAN_FRONTEND=noninteractive

CROSS_ARCHITECTURES=(i386 armhf arm64 ppc64el)
for arch in ${CROSS_ARCHITECTURES[@]}; do
  dpkg --add-architecture $arch
done

apt-get install -y \
  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

# Use newer packages from backports by default
cat >/etc/apt/preferences <<EOF
Package: *
Pin: release a=buster-backports
Pin-Priority: 500
EOF

apt-get dist-upgrade -y

apt-get install -y --no-remove \
  build-essential \
  docbook-xsl \
  libatomic-ops-dev \
  libcairo2-dev \
  libcunit1-dev \
  libpciaccess-dev \
  libxslt1-dev \
  meson \
  ninja-build \
  pkg-config \
  python3 \
  python3-pip \
  python3-wheel \
  python3-setuptools \
  valgrind \
  xsltproc

for arch in ${CROSS_ARCHITECTURES[@]}; do
  cross_file=/cross_file-$arch.txt

  # Cross-build libdrm deps
  apt-get install -y --no-remove \
    libcairo2-dev:$arch \
    libpciaccess-dev:$arch \
    crossbuild-essential-$arch

  # Generate cross build files for Meson
  /usr/share/meson/debcrossgen --arch $arch -o $cross_file

  # Work around a bug in debcrossgen that should be fixed in the next release
  if [ $arch = i386 ]; then
    sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" $cross_file
  fi
done


# Test that the oldest Meson version we claim to support is still supported
pip3 install meson==0.43