summaryrefslogtreecommitdiff
path: root/travis-install.sh
blob: 6334f7c61b19fef88dfd7be9479aca4129d108b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh -ex

updated=
apt_get_install()
{
	[ -n "$updated" ] || {
		sudo apt-get -qq update
		updated=1
	}
	sudo apt-get -qq --no-install-suggests --no-install-recommends \
		install -y "$@"
}

case "$KHEADERS" in
	*/*)
		git clone --depth=1 https://github.com/"$KHEADERS" kernel
		sudo make -C kernel headers_install INSTALL_HDR_PATH=/opt/kernel
		sudo rm -rf kernel
		KHEADERS_INC=/opt/kernel/include
		;;
	*)
		KHEADERS_INC=/usr/include
		;;
esac

case "$CC" in
	gcc)
		apt_get_install gcc-multilib
		;;
	gcc-*)
		sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
		apt_get_install gcc-multilib "$CC"-multilib
		;;
	clang-*)
		apt_get_install gcc-multilib "$CC"
		;;
	musl-gcc)
		apt_get_install gcc-multilib
		git clone --depth=1 https://github.com/strace/musl
		cd musl
			CC=gcc
			build=
			case "${TARGET-}" in
				x32)
					CC="$CC -mx32"
					;;
				x86)
					CC="$CC -m32"
					build='--build=i686-pc-linux-gnu --target=i686-pc-linux-gnu'
					;;
			esac
			./configure --prefix=/opt/musl --exec-prefix=/usr ${build}
			make
			sudo make install
		cd -
		rm -rf musl
		sudo ln -s \
			$KHEADERS_INC/asm* \
			$KHEADERS_INC/linux \
			$KHEADERS_INC/mtd \
			/opt/musl/include/
		;;
esac

case "${CHECK-}" in
	coverage)
		apt_get_install lcov
		pip install --user codecov
		;;
esac