2017-09-30 18:10:03 +02:00
|
|
|
language: rust
|
2018-01-11 06:02:28 +01:00
|
|
|
sudo: false
|
|
|
|
dist: trusty
|
2017-10-14 09:41:54 +02:00
|
|
|
|
2018-01-11 06:02:28 +01:00
|
|
|
cache:
|
|
|
|
cargo: true
|
|
|
|
apt: true
|
2017-09-30 18:10:03 +02:00
|
|
|
|
2018-01-11 06:02:28 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
2018-01-27 19:58:09 +01:00
|
|
|
- rust: 1.21.0
|
2018-01-11 06:02:28 +01:00
|
|
|
- rust: stable
|
|
|
|
- rust: beta
|
2018-01-12 21:32:54 +01:00
|
|
|
- rust: nightly
|
2018-01-11 06:02:28 +01:00
|
|
|
allow_failures:
|
|
|
|
- rust: nightly
|
|
|
|
- rust: beta
|
|
|
|
|
|
|
|
#rust:
|
2018-01-27 19:58:09 +01:00
|
|
|
# - 1.21.0
|
2018-01-11 06:02:28 +01:00
|
|
|
# - stable
|
|
|
|
# - beta
|
|
|
|
# - nightly-2018-01-03
|
2017-09-30 18:10:03 +02:00
|
|
|
|
2017-10-14 09:41:54 +02:00
|
|
|
env:
|
|
|
|
global:
|
2018-02-16 01:25:43 +01:00
|
|
|
# - RUSTFLAGS="-C link-dead-code"
|
2017-11-04 21:57:19 +01:00
|
|
|
- OPENSSL_VERSION=openssl-1.0.2
|
2017-10-14 09:41:54 +02:00
|
|
|
|
2017-11-04 21:57:19 +01: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 09:41:54 +02:00
|
|
|
|
2017-09-30 18:10:03 +02:00
|
|
|
# Add clippy
|
|
|
|
before_script:
|
2017-10-14 10:26:01 +02:00
|
|
|
- |
|
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
|
|
|
( ( cargo install clippy && export CLIPPY=true ) || export CLIPPY=false );
|
|
|
|
fi
|
2017-09-30 18:10:03 +02:00
|
|
|
- export PATH=$PATH:~/.cargo/bin
|
|
|
|
|
|
|
|
script:
|
2017-12-27 06:33:23 +01:00
|
|
|
- |
|
2018-02-20 02:32:22 +01:00
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "stable" ]]; then
|
2018-01-11 20:39:17 +01:00
|
|
|
cargo clean
|
2017-12-27 06:33:23 +01:00
|
|
|
USE_SKEPTIC=1 cargo test --features=alpn
|
|
|
|
else
|
2018-01-21 17:50:29 +01:00
|
|
|
cargo clean
|
2018-03-02 23:31:23 +01:00
|
|
|
cargo test -- --nocapture
|
2018-01-14 23:44:32 +01:00
|
|
|
# --features=alpn
|
2017-12-27 06:33:23 +01:00
|
|
|
fi
|
|
|
|
|
2017-12-27 18:49:59 +01:00
|
|
|
- |
|
2018-01-23 04:49:19 +01:00
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "stable" ]]; then
|
2018-01-02 22:42:30 +01:00
|
|
|
cd examples/basics && cargo check && cd ../..
|
|
|
|
cd examples/hello-world && cargo check && cd ../..
|
2017-12-27 18:49:59 +01:00
|
|
|
cd examples/multipart && cargo check && cd ../..
|
|
|
|
cd examples/json && cargo check && cd ../..
|
2018-02-28 06:23:41 +01:00
|
|
|
cd examples/juniper && cargo check && cd ../..
|
2018-02-13 04:15:39 +01:00
|
|
|
cd examples/state && cargo check && cd ../..
|
2017-12-27 18:49:59 +01:00
|
|
|
cd examples/template_tera && cargo check && cd ../..
|
2018-01-11 06:02:28 +01:00
|
|
|
cd examples/diesel && cargo check && cd ../..
|
2018-02-16 08:05:10 +01:00
|
|
|
cd examples/r2d2 && cargo check && cd ../..
|
2018-01-11 06:02:28 +01:00
|
|
|
cd examples/tls && cargo check && cd ../..
|
2018-01-28 10:04:58 +01:00
|
|
|
cd examples/websocket-chat && cargo check && cd ../..
|
2018-01-11 06:02:28 +01:00
|
|
|
cd examples/websocket && cargo check && cd ../..
|
2017-12-19 21:22:11 +01:00
|
|
|
fi
|
2017-10-14 10:26:01 +02:00
|
|
|
- |
|
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" && $CLIPPY ]]; then
|
|
|
|
cargo clippy
|
|
|
|
fi
|
2017-09-30 18:10:03 +02:00
|
|
|
|
|
|
|
# Upload docs
|
|
|
|
after_success:
|
|
|
|
- |
|
2018-02-28 06:04:22 +01:00
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
2018-02-10 20:39:12 +01:00
|
|
|
cargo doc --features "alpn, tls" --no-deps &&
|
2017-10-15 08:00:03 +02:00
|
|
|
echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html &&
|
2017-11-28 18:57:27 +01:00
|
|
|
cargo install mdbook &&
|
|
|
|
cd guide && mdbook build -d ../target/doc/guide && cd .. &&
|
2017-10-15 08:00:03 +02: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 18:10:03 +02:00
|
|
|
fi
|
2017-10-14 09:41:54 +02:00
|
|
|
|
2017-10-15 08:00:03 +02:00
|
|
|
- |
|
2018-02-20 02:32:22 +01:00
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_RUST_VERSION" == "1.21.0" ]]; then
|
2017-12-02 20:41:20 +01:00
|
|
|
bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)
|
2017-12-09 20:39:13 +01:00
|
|
|
USE_SKEPTIC=1 cargo tarpaulin --out Xml
|
2017-12-02 20:41:20 +01:00
|
|
|
bash <(curl -s https://codecov.io/bash)
|
2017-10-14 09:41:54 +02:00
|
|
|
echo "Uploaded code coverage"
|
2017-10-15 08:00:03 +02:00
|
|
|
fi
|