Remove bogo/trytls from travis

This commit is contained in:
Joseph Birr-Pixton 2020-04-12 12:56:15 +01:00
parent 339923fc53
commit 8e9751f9ef
1 changed files with 2 additions and 9 deletions

View File

@ -1,3 +1,5 @@
# nb. this is a secondary CI platform only: azure pipelines is preferred.
language: rust
group: edge
matrix:
@ -10,7 +12,6 @@ matrix:
dist: trusty
sudo: required
rust: nightly
env: COVERAGE=1
- os: linux
dist: trusty
sudo: required
@ -22,19 +23,11 @@ matrix:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install openssl ; fi
- if [[ "$COVERAGE" == "1" ]]; then admin/build-lcov ; fi
- if [[ "$COVERAGE" == "1" ]]; then gem install coveralls-lcov ; fi
- if [[ "$COVERAGE" == "1" ]]; then rustup install stable ; fi
- if [[ "$COVERAGE" == "1" ]]; then sudo apt-get install libclang-common-3.8-dev llvm-3.8-dev ; fi
script:
- cargo build
- RUST_BACKTRACE=1 cargo test
- RUST_BACKTRACE=1 cargo test --all-features
- cargo test --release --no-run
- ./target/release/examples/bench
# - ( cd trytls && ./runme )
- ( cd bogo && ./runme )
- ( cd rustls && cargo build --no-default-features )
- ( cd rustls && cargo test --no-default-features --no-run )
- if [[ "$COVERAGE" == "1" ]]; then ./admin/coverage ; fi
- if [[ "$COVERAGE" == "1" ]]; then coveralls-lcov final.info ; fi