diff options
Diffstat (limited to 'src/scripts/ci/setup_travis.sh')
-rwxr-xr-x | src/scripts/ci/setup_travis.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh index f6651e9f3..fd13417c5 100755 --- a/src/scripts/ci/setup_travis.sh +++ b/src/scripts/ci/setup_travis.sh @@ -53,9 +53,10 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then elif [ "$BUILD_MODE" = "coverage" ]; then sudo apt-get -qq update - sudo apt-get install trousers libtspi-dev lcov python-coverage libboost-all-dev + sudo apt-get install trousers libtspi-dev lcov python-coverage libboost-all-dev golang-1.10 git clone --depth 1 https://github.com/randombit/botan-ci-tools + git clone --depth 1 --branch runner-changes https://github.com/randombit/boringssl.git # FIXME use distro softhsm2 package instead # need to figure out ownership problem @@ -65,12 +66,6 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then pip install --user codecov==2.0.10 - elif [ "$BUILD_MODE" = "bogo" ]; then - sudo apt-get -qq update - sudo apt-get install golang-1.10 - - git clone --depth 1 --branch runner-changes https://github.com/randombit/boringssl.git - elif [ "$BUILD_MODE" = "docs" ]; then sudo apt-get -qq update sudo apt-get install doxygen python-docutils |