7c27701a3b
This commit backports the GitHub actions configuration from mater to the v2019.1.x branch. This way, this branch will get build-tested.
11 lines
262 B
Bash
Executable File
11 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cp contrib/actions/sources.list /etc/apt/sources.list
|
|
rm -rf /etc/apt/sources.list.d
|
|
apt update
|
|
apt install git subversion build-essential python gawk unzip libncurses5-dev zlib1g-dev libssl-dev wget time
|
|
apt clean
|
|
rm -rf /var/lib/apt/lists/*
|