summaryrefslogtreecommitdiff
path: root/.gitlab-ci/container/x86_cross_arm_test.sh
blob: 5b50a89a12b671ba15887a0dff089e71bd1008bb (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/bin/bash

set -e
set -o xtrace

# etnaviv will eventually need armhf too.
CROSS_ARCHITECTURES="arm64"

for arch in $CROSS_ARCHITECTURES; do
    dpkg --add-architecture $arch
done

############### Install packages for building
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

apt-get install -y --no-remove \
        abootimg \
        android-sdk-ext4-utils \
        bc \
        bison \
        bzip2 \
        ccache \
        cmake \
        cpio \
        g++ \
        debootstrap \
        fastboot \
        flex \
        git \
        meson \
        netcat \
        python3-distutils \
        python3-minimal \
        python3-serial \
        python3.7 \
        pkg-config \
        procps \
        u-boot-tools \
        unzip

# Cross-build test deps
for arch in $CROSS_ARCHITECTURES; do
    apt-get install -y --no-remove \
        crossbuild-essential-${arch} \
        libdrm-dev:${arch} \
        libegl1-mesa-dev:${arch} \
        libelf-dev:${arch} \
        libexpat1-dev:${arch} \
        libffi-dev:${arch} \
        libgbm-dev:${arch} \
        libgles2-mesa-dev:${arch} \
        libpng-dev:${arch} \
        libstdc++6:${arch} \
        libtinfo-dev:${arch} \
        libegl1-mesa-dev:${arch} \
        libvulkan-dev:${arch}

    mkdir /var/cache/apt/archives/${arch}
done

. .gitlab-ci/container/container_pre_build.sh

############### Create rootfs

for arch in $CROSS_ARCHITECTURES; do
  . .gitlab-ci/create-cross-file.sh $arch

  DEBIAN_ARCH=$arch . .gitlab-ci/container/lava_arm.sh
done

############### Uninstall the build software

ccache --show-stats

apt-get purge -y \
        bc \
        bison \
        bzip2 \
        ccache \
        cmake \
        g++ \
        flex \
        git \
        meson \
        pkg-config \
        python3-distutils \
        procps \
        u-boot-tools

for arch in $CROSS_ARCHITECTURES; do
    apt-get purge -y ".*:${arch}"
done

apt-get autoremove -y --purge