1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00
actix-web/.travis.yml

46 lines
1.2 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
2019-03-02 05:33:31 +01:00
addons:
apt:
packages:
- libssl-dev
2017-10-14 09:41:54 +02:00
2019-03-02 05:33:31 +01:00
cache: cargo
2017-09-30 18:10:03 +02:00
2018-01-11 06:02:28 +01:00
matrix:
include:
- rust: stable
- rust: beta
2018-01-12 21:32:54 +01:00
- rust: nightly
2018-03-28 05:57:02 +02:00
allow_failures:
- rust: nightly
2018-01-11 06:02:28 +01:00
2019-03-02 05:33:31 +01:00
before_cache: |
if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin -f
fi
2017-09-30 18:10:03 +02:00
script:
2019-03-02 05:33:31 +01:00
- cargo clean
- cargo build --features="ssl"
- cargo test --features="ssl"
after_success: |
if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then
cargo tarpaulin --features="ssl" --out Xml
2018-05-08 00:54:29 +02:00
bash <(curl -s https://codecov.io/bash)
echo "Uploaded code coverage"
2019-03-02 05:33:31 +01:00
fi
2017-09-30 18:10:03 +02:00
# Upload docs
2018-10-05 06:15:24 +02:00
#after_success:
# - |
# if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
2018-10-07 06:14:02 +02:00
# cargo doc --features "session" --no-deps &&
2018-10-05 06:15:24 +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"
# fi