summaryrefslogtreecommitdiff
path: root/ci/setup-linux.sh
blob: a0db14ee07624bc39548bad58d3a7d7789bb5b54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e
set -x

TMPDIR=${TMPDIR:-/tmp}

if [ -z "$SKIP_APT" ]; then
	apt-get update
	apt-get -y install build-essential pkg-config clang cmake openssl libssl-dev libssh2-1-dev libcurl4-gnutls-dev openssh-server
fi

mkdir -p /var/run/sshd