diff options
author | Jack Lloyd <[email protected]> | 2019-05-23 15:02:13 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-05-23 15:02:13 -0400 |
commit | 6431d07ac49903798bbea1a34c0109a5e3a21fdd (patch) | |
tree | 752383dd7b21b6182574ab678e6491c480ccf854 /src/scripts/ci/setup_travis.sh | |
parent | dce6a74d15fcf7c0844f3012c319f18f8c937b3b (diff) |
Move BoGo tests to coverage build
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 |