2017-09-30 16:10:03 +00:00
|
|
|
language: rust
|
2017-10-14 07:41:54 +00:00
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
rust:
|
2017-10-27 06:14:33 +00:00
|
|
|
- 1.20.0
|
2017-10-14 07:41:54 +00:00
|
|
|
- stable
|
2017-10-23 06:00:04 +00:00
|
|
|
- beta
|
2017-09-30 16:10:03 +00:00
|
|
|
- nightly
|
|
|
|
|
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
|
2017-10-14 07:41:54 +00:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- RUSTFLAGS="-C link-dead-code"
|
2017-11-04 20:57:19 +00:00
|
|
|
- OPENSSL_VERSION=openssl-1.0.2
|
2017-10-14 07:41:54 +00:00
|
|
|
|
2017-11-04 20:57:19 +00:00
|
|
|
before_install:
|
|
|
|
- sudo add-apt-repository -y ppa:0k53d-karl-f830m/openssl
|
|
|
|
- sudo apt-get update -qq
|
|
|
|
- sudo apt-get install -qq libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
|
2017-10-14 07:41:54 +00:00
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
# Add clippy
|
|
|
|
before_script:
|
2017-10-14 08:26:01 +00:00
|
|
|
- |
|
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
|
|
|
( ( cargo install clippy && export CLIPPY=true ) || export CLIPPY=false );
|
|
|
|
fi
|
2017-09-30 16:10:03 +00:00
|
|
|
- export PATH=$PATH:~/.cargo/bin
|
|
|
|
|
|
|
|
script:
|
2017-11-04 20:57:19 +00:00
|
|
|
- USE_SKEPTIC=1 cargo test --features=alpn
|
2017-10-14 08:26:01 +00:00
|
|
|
- |
|
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" && $CLIPPY ]]; then
|
|
|
|
cargo clippy
|
|
|
|
fi
|
2017-09-30 16:10:03 +00:00
|
|
|
|
|
|
|
# Upload docs
|
|
|
|
after_success:
|
|
|
|
- |
|
2017-10-15 06:14:26 +00:00
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
2017-11-27 06:59:04 +00:00
|
|
|
cargo doc --features alpn --no-deps &&
|
2017-10-15 06:00:03 +00:00
|
|
|
echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html &&
|
2017-11-28 17:57:27 +00:00
|
|
|
cargo install mdbook &&
|
|
|
|
cd guide && mdbook build -d ../target/doc/guide && cd .. &&
|
2017-10-15 06:00:03 +00:00
|
|
|
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 16:10:03 +00:00
|
|
|
fi
|
2017-10-14 07:41:54 +00:00
|
|
|
|
2017-10-15 06:00:03 +00:00
|
|
|
- |
|
2017-10-14 07:41:54 +00:00
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
|
2017-12-02 19:41:20 +00:00
|
|
|
bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)
|
|
|
|
cargo tarpaulin --out Xml
|
|
|
|
bash <(curl -s https://codecov.io/bash)
|
|
|
|
#wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
|
|
|
|
#tar xzf master.tar.gz &&
|
|
|
|
#cd kcov-master &&
|
|
|
|
#mkdir build &&
|
|
|
|
#cd build &&
|
|
|
|
#cmake .. &&
|
|
|
|
#make &&
|
|
|
|
#make install DESTDIR=../../kcov-build &&
|
|
|
|
#cd ../.. &&
|
|
|
|
#rm -rf kcov-master &&
|
|
|
|
#for file in target/debug/actix_web-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
|
|
|
|
#for file in target/debug/test_*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
|
|
|
|
#bash <(curl -s https://codecov.io/bash) &&
|
2017-10-14 07:41:54 +00:00
|
|
|
echo "Uploaded code coverage"
|
2017-10-15 06:00:03 +00:00
|
|
|
fi
|