2017-09-30 09:10:03 -07:00
|
|
|
language: rust
|
2018-07-13 00:05:01 +06:00
|
|
|
sudo: required
|
2018-01-10 21:02:28 -08:00
|
|
|
dist: trusty
|
2017-10-14 00:41:54 -07:00
|
|
|
|
2018-01-10 21:02:28 -08:00
|
|
|
cache:
|
|
|
|
cargo: true
|
|
|
|
apt: true
|
2017-09-30 09:10:03 -07:00
|
|
|
|
2018-01-10 21:02:28 -08:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- rust: stable
|
|
|
|
- rust: beta
|
2018-01-12 12:32:54 -08:00
|
|
|
- rust: nightly
|
2018-03-27 20:57:02 -07:00
|
|
|
allow_failures:
|
|
|
|
- rust: nightly
|
2018-01-10 21:02:28 -08:00
|
|
|
|
2017-10-14 00:41:54 -07:00
|
|
|
env:
|
|
|
|
global:
|
2018-02-15 16:25:43 -08:00
|
|
|
# - RUSTFLAGS="-C link-dead-code"
|
2017-11-04 13:57:19 -07:00
|
|
|
- OPENSSL_VERSION=openssl-1.0.2
|
2017-10-14 00:41:54 -07:00
|
|
|
|
2017-11-04 13:57:19 -07:00
|
|
|
before_install:
|
|
|
|
- sudo add-apt-repository -y ppa:0k53d-karl-f830m/openssl
|
|
|
|
- sudo apt-get update -qq
|
2018-05-29 18:18:05 -07:00
|
|
|
- sudo apt-get install -y openssl libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
|
2017-10-14 00:41:54 -07:00
|
|
|
|
2017-09-30 09:10:03 -07:00
|
|
|
# Add clippy
|
|
|
|
before_script:
|
|
|
|
- export PATH=$PATH:~/.cargo/bin
|
|
|
|
|
|
|
|
script:
|
2017-12-26 21:33:23 -08:00
|
|
|
- |
|
2018-09-27 22:23:29 -07:00
|
|
|
if [[ "$TRAVIS_RUST_VERSION" != "nightly" ]]; then
|
2018-04-13 16:20:23 -07:00
|
|
|
cargo clean
|
2018-10-13 10:05:21 +03:00
|
|
|
cargo check --features rust-tls
|
|
|
|
cargo check --features ssl
|
|
|
|
cargo check --features tls
|
2018-09-27 21:24:21 -07:00
|
|
|
cargo test --features="ssl,tls,rust-tls" -- --nocapture
|
2018-05-07 15:54:29 -07:00
|
|
|
fi
|
|
|
|
- |
|
2018-09-27 22:23:29 -07:00
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
2018-07-16 00:40:22 +06:00
|
|
|
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install -f cargo-tarpaulin
|
2018-10-02 20:22:51 -07:00
|
|
|
RUST_BACKTRACE=1 cargo tarpaulin --features="ssl,tls,rust-tls" --out Xml
|
2018-05-07 15:54:29 -07:00
|
|
|
bash <(curl -s https://codecov.io/bash)
|
|
|
|
echo "Uploaded code coverage"
|
|
|
|
fi
|
2017-09-30 09:10:03 -07:00
|
|
|
|
|
|
|
# Upload docs
|
|
|
|
after_success:
|
|
|
|
- |
|
2018-09-27 22:23:29 -07:00
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
|
2018-09-27 21:24:21 -07:00
|
|
|
cargo doc --features "ssl,tls,rust-tls,session" --no-deps &&
|
2017-10-14 23:00:03 -07:00
|
|
|
echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html &&
|
|
|
|
git clone https://github.com/davisp/ghp-import.git &&
|
|
|
|
./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -r https://"$GH_TOKEN"@github.com/"$TRAVIS_REPO_SLUG.git" target/doc &&
|
|
|
|
echo "Uploaded documentation"
|
2017-09-30 09:10:03 -07:00
|
|
|
fi
|