1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 03:42:59 +01:00
actix-net/.travis.yml

56 lines
1.9 KiB
YAML
Raw Normal View History

2018-08-19 19:47:04 +02:00
language: rust
sudo: required
dist: trusty
cache:
cargo: true
apt: true
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
allow_failures:
- rust: nightly
env:
global:
2018-12-09 18:56:23 +01:00
- RUSTFLAGS="-C link-dead-code"
2018-08-19 19:47:04 +02:00
- OPENSSL_VERSION=openssl-1.0.2
before_install:
- sudo add-apt-repository -y ppa:0k53d-karl-f830m/openssl
- sudo apt-get update -qq
- sudo apt-get install -y openssl libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
# Add clippy
before_script:
- export PATH=$PATH:~/.cargo/bin
script:
- |
2018-09-18 03:22:16 +02:00
if [[ "$TRAVIS_RUST_VERSION" != "nightly" ]]; then
2018-08-19 19:47:04 +02:00
cargo clean
2018-09-28 06:06:27 +02:00
cargo test --features="ssl,tls,rust-tls" -- --nocapture
2018-12-11 17:13:58 +01:00
cd actix-codec && cargo test && cd ..
cd actix-service && cargo test && cd ..
cd actix-server && cargo test --features="ssl,tls,rust-tls" -- --nocapture && cd ..
cd actix-rt && cargo test && cd ..
cd actix-connector && cargo test && cd ..
cd actix-utils && cargo test && cd ..
2018-08-19 19:47:04 +02:00
fi
- |
2018-09-18 03:22:16 +02:00
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
2018-08-19 19:47:04 +02:00
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install -f cargo-tarpaulin
2018-09-28 06:06:27 +02:00
cargo tarpaulin --features="ssl,tls,rust-tls" --out Xml
2018-08-19 19:47:04 +02:00
bash <(curl -s https://codecov.io/bash)
echo "Uploaded code coverage"
2018-12-11 17:13:58 +01:00
cd actix-service && cargo tarpaulin --out Xml && bash <(curl -s https://codecov.io/bash) && cd ..
cd actix-rt && cargo tarpaulin --out Xml && bash <(curl -s https://codecov.io/bash) && cd ..
cd actix-connector && cargo tarpaulin --out Xml && bash <(curl -s https://codecov.io/bash) && cd ..
cd actix-codec && cargo tarpaulin --out Xml && bash <(curl -s https://codecov.io/bash) && cd ..
cd actix-server && cargo tarpaulin --out Xml && bash <(curl -s https://codecov.io/bash) && cd ..
cd actix-utils && cargo tarpaulin --out Xml && bash <(curl -s https://codecov.io/bash) && cd ..
2018-08-19 19:47:04 +02:00
fi