2017-09-03 22:31:15 +08:00
|
|
|
language: rust
|
2016-03-08 07:13:49 +08:00
|
|
|
|
2019-05-07 05:41:44 +08:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- "$HOME/.cargo"
|
2019-08-04 00:19:04 +08:00
|
|
|
# - "$HOME/.cache/sccache"
|
2019-05-07 05:41:44 +08:00
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- CRATE_NAME=mdbook
|
|
|
|
|
2019-02-04 07:45:02 +08:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- rust: stable
|
|
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
|
|
|
- rust: beta
|
|
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
|
|
|
- rust: nightly
|
|
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
2019-06-21 03:04:55 +08:00
|
|
|
- rust: 1.34.0 # Minimum required Rust version
|
|
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
2018-08-22 00:18:20 +08:00
|
|
|
|
2019-02-04 07:45:02 +08:00
|
|
|
- rust: stable
|
|
|
|
os: osx
|
|
|
|
env: TARGET=x86_64-apple-darwin
|
2018-08-22 00:18:20 +08:00
|
|
|
|
2019-05-07 05:41:44 +08:00
|
|
|
before_install:
|
2019-06-21 13:06:51 +08:00
|
|
|
- |
|
2019-08-04 00:19:04 +08:00
|
|
|
# export RUSTC_WRAPPER=sccache;
|
2019-06-21 13:06:51 +08:00
|
|
|
cd "$(mktemp -d)";
|
|
|
|
case "$TRAVIS_OS_NAME" in
|
2019-05-07 05:41:44 +08:00
|
|
|
linux )
|
2019-06-21 13:06:51 +08:00
|
|
|
travis_retry curl -sSL 'https://github.com/mozilla/sccache/releases/download/0.2.9/sccache-0.2.9-x86_64-unknown-linux-musl.tar.gz' | tar -xzf - --strip-components=1 &&
|
|
|
|
sudo cp sccache /usr/local/bin/sccache;
|
2019-05-07 05:41:44 +08:00
|
|
|
;;
|
|
|
|
osx )
|
2019-06-21 13:06:51 +08:00
|
|
|
travis_retry curl -sSL 'https://github.com/mozilla/sccache/releases/download/0.2.9/sccache-0.2.9-x86_64-apple-darwin.tar.gz' | tar -xzf - --strip-components=1 &&
|
|
|
|
sudo cp sccache /usr/local/bin/sccache;
|
2019-05-07 05:41:44 +08:00
|
|
|
;;
|
|
|
|
* ) unset RUSTC_WRAPPER;;
|
2019-06-21 13:06:51 +08:00
|
|
|
esac;
|
|
|
|
cd "$TRAVIS_BUILD_DIR";
|
2016-03-08 07:13:49 +08:00
|
|
|
|
2017-09-03 22:44:49 +08:00
|
|
|
script:
|
2018-08-22 00:18:20 +08:00
|
|
|
- cargo test --all
|
|
|
|
- cargo test --all --no-default-features
|
2019-06-21 13:06:51 +08:00
|
|
|
- |
|
|
|
|
if [ "$TARGET" = x86_64-unknown-linux-gnu ] && [ "$TRAVIS_RUST_VERSION" = stable ]; then
|
2019-06-29 00:14:26 +08:00
|
|
|
rustup component add rustfmt && \
|
2019-05-09 03:20:38 +08:00
|
|
|
cargo fmt --all -- --check;
|
|
|
|
fi
|
2017-09-03 22:44:49 +08:00
|
|
|
|
2016-03-08 07:13:49 +08:00
|
|
|
before_deploy:
|
2019-05-16 06:50:01 +08:00
|
|
|
- cargo run -- build book-example
|
2018-04-07 15:47:08 +08:00
|
|
|
- sh ci/before_deploy.sh
|
2016-03-08 07:13:49 +08:00
|
|
|
|
|
|
|
deploy:
|
2019-05-16 06:50:01 +08:00
|
|
|
- provider: releases
|
|
|
|
api_key: "$GITHUB_TOKEN"
|
2017-12-30 19:15:17 +08:00
|
|
|
file_glob: true
|
|
|
|
file: "$CRATE_NAME-$TRAVIS_TAG-$TARGET.*"
|
2016-03-08 07:13:49 +08:00
|
|
|
on:
|
2017-12-30 19:15:17 +08:00
|
|
|
condition: "$TRAVIS_RUST_VERSION = stable"
|
2016-03-08 07:13:49 +08:00
|
|
|
tags: true
|
2017-12-30 19:15:17 +08:00
|
|
|
skip_cleanup: true
|
2019-05-16 06:50:01 +08:00
|
|
|
- provider: pages
|
|
|
|
local_dir: book-example/book
|
|
|
|
skip_cleanup: true
|
|
|
|
github_token: "$GITHUB_TOKEN"
|
2019-06-21 13:17:03 +08:00
|
|
|
keep_history: false
|
2019-05-16 06:50:01 +08:00
|
|
|
on:
|
|
|
|
condition: $TRAVIS_OS_NAME = "linux" && $TRAVIS_RUST_VERSION = "stable"
|
|
|
|
tags: true
|
2017-12-30 19:15:17 +08:00
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
2018-04-07 15:47:08 +08:00
|
|
|
- master
|
2018-08-03 08:10:11 +08:00
|
|
|
- /^v\d+\.\d+\.\d+.*$/
|
2016-03-08 07:13:49 +08:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
on_success: never
|