summaryrefslogtreecommitdiffstats
path: root/.github/travis/before-install.sh
blob: 31fc5868554d86c105b0674de72b809c3deb452c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

if [ "$TRAVIS_OS_NAME" = "linux" ]; then
	sudo apt-get update -qq
	sudo apt-get -y install bison \
				autotools-dev \
				libncurses5-dev \
				libevent-dev \
				pkg-config \
				libutempter-dev \
				build-essential

	if [ "$BUILD" = "musl" ]; then
		sudo apt-get -y install musl-dev \
					musl-tools
	fi
fi