async-std/.travis.yml

52 lines
1.4 KiB
YAML
Raw Normal View History

2019-08-08 12:44:48 +00:00
language: rust
env: RUSTFLAGS="-D warnings"
2019-08-08 12:44:48 +00:00
matrix:
fast_finish: true
include:
- rust: nightly
os: linux
2019-08-08 12:44:48 +00:00
- rust: nightly
os: osx
osx_image: xcode9.2
- rust: nightly-x86_64-pc-windows-msvc
os: windows
2019-08-08 12:44:48 +00:00
- name: fmt
rust: nightly
os: linux
before_script: |
if ! rustup component add rustfmt; then
target=`curl https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/rustfmt`;
echo "'rustfmt' is unavailable on the toolchain 'nightly', use the toolchain 'nightly-$target' instead";
rustup toolchain install nightly-$target;
rustup default nightly-$target;
rustup component add rustfmt;
fi
script:
- cargo fmt --all -- --check
- name: docs
rust: nightly
os: linux
script:
- cargo doc --features docs
# TODO(yoshuawuyts): re-enable mdbook
# - name: book
# rust: nightly
# os: linux
# before_script:
# - test -x $HOME/.cargo/bin/mdbook || ./ci/install-mdbook.sh
# - cargo build # to find 'extern crate async_std' by `mdbook test`
# script:
# - mdbook build docs
# - mdbook test -L ./target/debug/deps docs
2019-08-18 23:35:54 +00:00
2019-08-08 12:44:48 +00:00
script:
- cargo check --features unstable --all --benches --bins --examples --tests
- cargo test --features unstable --all