1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/.travis.yml

57 lines
1.6 KiB
YAML
Raw Normal View History

2017-09-30 18:10:03 +02:00
language: rust
2018-07-12 20:05:01 +02:00
sudo: required
2018-01-11 06:02:28 +01:00
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:
- rust: stable
- rust: beta
2019-04-03 00:47:46 +02:00
- rust: nightly-2019-04-02
2018-03-28 05:57:02 +02:00
allow_failures:
2019-04-03 00:47:46 +02:00
- rust: nightly-2019-04-02
2018-01-11 06:02:28 +01: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
2018-05-30 03:18:05 +02:00
- sudo apt-get install -y openssl libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
2017-10-14 09:41:54 +02:00
2019-03-03 07:22:45 +01:00
before_cache: |
2019-04-03 00:47:46 +02:00
if [[ "$TRAVIS_RUST_VERSION" == "nightly-2019-04-02" ]]; then
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin
2019-03-03 07:22:45 +01:00
fi
2017-09-30 18:10:03 +02:00
# Add clippy
before_script:
- export PATH=$PATH:~/.cargo/bin
script:
2019-03-28 22:27:07 +01:00
- cargo update
- cargo check --all --no-default-features
2019-03-24 19:29:35 +01:00
- cargo test --all-features --all -- --nocapture
2017-09-30 18:10:03 +02:00
# Upload docs
after_success:
- |
2018-09-28 07:23:29 +02:00
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
cargo doc --no-deps --all-features &&
2017-10-15 08:00:03 +02: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 18:10:03 +02:00
fi
2019-03-03 10:03:28 +01:00
- |
2019-04-03 00:47:46 +02:00
if [[ "$TRAVIS_RUST_VERSION" == "nightly-2019-04-02" ]]; then
2019-03-24 19:29:35 +01:00
taskset -c 0 cargo tarpaulin --out Xml --all --all-features
2019-03-03 10:03:28 +01:00
bash <(curl -s https://codecov.io/bash)
echo "Uploaded code coverage"
fi