aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/install-deps
blob: d2282bf8de6d2f73bda00721eaa7cbbc5443b891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# vim: set ts=4:
set -eu

. "$(dirname "$0")"/common.sh

title 'Installing dependencies'

# Build dependencies
alpine_run <<-EOF
	apk add linux-headers util-linux-dev kmod-dev cryptsetup-dev
EOF

# Runtime dependencies
alpine_run <<-EOF
	apk add cryptsetup e2fsprogs
EOF