2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-14 16:29:39 +00:00

Reenable windows builds ()

Currently deactivates windows docs build with `--feature docs`.
This commit is contained in:
Florian Gilcher 2019-08-16 21:46:23 +02:00 committed by GitHub
parent 2207eae520
commit 7e5ff9409b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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