blob: 66837268a15c99e3207e5dce1b687dc51827121b (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
#!/bin/bash
set -ev
which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
if [ "$BUILD_MODE" = "valgrind" ]; then
sudo apt-get -qq update
sudo apt-get install valgrind
elif [ "$BUILD_MODE" = "cross-win32" ]; then
# See https://github.com/travis-ci/travis-ci/issues/6460
sudo dpkg --add-architecture i386
sudo apt-get -qq update # have to update again due to adding i386 above
sudo apt-get install wine
sudo apt-get install g++-mingw-w64-i686 mingw-w64-i686-dev
elif [ "${BUILD_MODE:0:5}" = "cross" ]; then
# Need updated qemu
sudo add-apt-repository -y ppa:ubuntu-cloud-archive/kilo-staging
sudo apt-get -qq update
sudo apt-get install qemu
if [ "$BUILD_MODE" = "cross-arm32" ]; then
sudo apt-get install g++-arm-linux-gnueabihf libc6-dev-armhf-cross
elif [ "$BUILD_MODE" = "cross-arm64" ]; then
sudo apt-get install g++-aarch64-linux-gnu libc6-dev-arm64-cross
elif [ "$BUILD_MODE" = "cross-ppc32" ]; then
sudo apt-get install g++-powerpc-linux-gnu libc6-dev-powerpc-cross
elif [ "$BUILD_MODE" = "cross-ppc64" ]; then
sudo apt-get install g++-powerpc64le-linux-gnu libc6-dev-ppc64el-cross
fi
elif [ "$BUILD_MODE" = "lint" ]; then
pip install --user pylint
pip3 install --user pylint
elif [ "$BUILD_MODE" = "coverage" ]; then
sudo apt-get -qq update
sudo apt-get install trousers libtspi-dev
# need updated lcov for gcc 4.8 coverage format
wget http://mirrors.kernel.org/ubuntu/pool/universe/l/lcov/lcov_1.12-2_all.deb
sudo dpkg -i lcov_1.12-2_all.deb
# ccache in Trusty doesn't understand --coverage
wget http://mirrors.kernel.org/ubuntu/pool/main/c/ccache/ccache_3.2.4-1_amd64.deb
sudo dpkg -i ccache_3.2.4-1_amd64.deb
(cd /home/travis/bin && ln -s gcov-4.8 gcov)
pip install --user coverage
pip install --user codecov
# SoftHSMv1 in 14.04 does not work
# Installs prebuilt SoftHSMv2 binaries into /tmp
wget https://www.randombit.net/softhsm2-trusty-bin.tar.bz2
tar -C / -xvjf softhsm2-trusty-bin.tar.bz2
/tmp/softhsm/bin/softhsm2-util --init-token --free --label test --pin 123456 --so-pin 12345678
elif [ "$BUILD_MODE" = "sonar" ]; then
wget https://sonarqube.com/static/cpp/build-wrapper-linux-x86.zip
unzip build-wrapper-linux-x86.zip
elif [ "$BUILD_MODE" = "docs" ]; then
sudo apt-get -qq update
sudo apt-get install doxygen
# The version of Sphinx in 14.04 is too old (1.2.2) and does not support
# all C++ features used in the manual. Install python-requests to avoid
# problem in Ubuntu packaged version, see
# http://stackoverflow.com/questions/32779919/no-module-named-for-requests
sudo apt-get remove python-requests python-openssl
sudo pip install requests sphinx pyopenssl
fi
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
# Workaround for https://github.com/Homebrew/homebrew/issues/42553
brew update || brew update
brew install ccache
if [ "$BUILD_MODE" != "cross-arm32" ] && [ "$BUILD_MODE" != "cross-arm64" ]; then
brew install xz
# Python2 is already installed
brew install python3
# Boost 1.58 is installed on Travis OS X images
# brew install boost
fi
fi
|