mirror of
https://github.com/async-rs/async-std.git
synced 2025-02-14 16:29:39 +00:00
Reenable windows builds (#49)
Currently deactivates windows docs build with `--feature docs`.
This commit is contained in:
parent
2207eae520
commit
7e5ff9409b
1 changed files with 6 additions and 4 deletions
10
.travis.yml
10
.travis.yml
|
@ -11,13 +11,15 @@ matrix:
|
|||
include:
|
||||
- rust: nightly
|
||||
os: linux
|
||||
env: BUILD_DOCS=1
|
||||
- rust: nightly
|
||||
os: osx
|
||||
# - rust: nightly-x86_64-pc-windows-msvc
|
||||
# os: windows
|
||||
env: BUILD_DOCS=1
|
||||
- rust: nightly-x86_64-pc-windows-msvc
|
||||
os: windows
|
||||
|
||||
script:
|
||||
- cargo fmt --all -- --check
|
||||
- cargo check --all --benches --bins --examples --tests
|
||||
- cargo test --all
|
||||
- cargo doc --features docs
|
||||
- cargo fmt --all -- --check
|
||||
- if [[ -n "$BUILD_DOCS" ]]; then cargo doc --features docs; fi
|
||||
|
|
Loading…
Reference in a new issue