2017-09-30 16:10:03 +00:00
|
|
|
language: rust
|
2018-07-12 18:05:01 +00:00
|
|
|
sudo: required
|
2018-01-11 05:02:28 +00:00
|
|
|
dist: trusty
|
2017-10-14 07:41:54 +00:00
|
|
|
|
2018-01-11 05:02:28 +00:00
|
|
|
cache:
|
|
|
|
cargo: true
|
|
|
|
apt: true
|
2017-09-30 16:10:03 +00:00
|
|
|
|
2018-01-11 05:02:28 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- rust: stable
|
|
|
|
- rust: beta
|
2018-01-12 20:32:54 +00:00
|
|
|
- rust: nightly
|
2018-03-28 03:57:02 +00:00
|
|
|
allow_failures:
|
|
|
|
- rust: nightly
|
2018-01-11 05:02:28 +00:00
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
before_script:
|
|
|
|
- export PATH=$PATH:~/.cargo/bin
|
|
|
|
|
|
|
|
script:
|
2017-12-27 05:33:23 +00:00
|
|
|
- |
|
2018-09-28 05:23:29 +00:00
|
|
|
if [[ "$TRAVIS_RUST_VERSION" != "nightly" ]]; then
|
2018-04-13 23:20:23 +00:00
|
|
|
cargo clean
|
2018-10-07 04:14:02 +00:00
|
|
|
cargo test
|
2018-05-07 22:54:29 +00:00
|
|
|
fi
|
|
|
|
- |
|
2018-09-28 05:23:29 +00:00
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
2018-07-15 18:40:22 +00:00
|
|
|
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install -f cargo-tarpaulin
|
2018-10-07 04:14:02 +00:00
|
|
|
RUST_BACKTRACE=1 cargo tarpaulin --out Xml
|
2018-05-07 22:54:29 +00:00
|
|
|
bash <(curl -s https://codecov.io/bash)
|
|
|
|
echo "Uploaded code coverage"
|
|
|
|
fi
|
2017-09-30 16:10:03 +00:00
|
|
|
|
|
|
|
# Upload docs
|
2018-10-05 04:15:24 +00:00
|
|
|
#after_success:
|
|
|
|
# - |
|
|
|
|
# if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
|
2018-10-07 04:14:02 +00:00
|
|
|
# cargo doc --features "session" --no-deps &&
|
2018-10-05 04:15:24 +00: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
|