summaryrefslogtreecommitdiff
path: root/.gitlab-ci/container/arm_test-base.sh
blob: ef26837cb3e664340dd95d99c38aea3454268b23 (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
#!/bin/bash

set -e
set -o xtrace

############### Install packages for baremetal testing
apt-get install -y ca-certificates
sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
apt-get update

apt-get install -y --no-remove \
        abootimg \
        cpio \
        fastboot \
        netcat \
        nginx-full \
        procps \
        python3-distutils \
        python3-minimal \
        python3-serial \
        python3.7 \
        rsync \
        telnet \
        unzip \
        wget

# setup nginx
sed -i '/gzip_/ s/#\ //g' /etc/nginx/nginx.conf
cp .gitlab-ci/bare-metal/nginx-default-site  /etc/nginx/sites-enabled/default