Files
libgit2/ci/setup-linux.sh
Edward Thomson 6f8cc9b5a3 ci: move travis to the new scripts
(cherry picked from commit 24b8dd8275)
2018-10-12 12:07:50 +02:00

14 lines
248 B
Bash
Executable File

#!/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