Skip to content

Commit

Permalink
Reenable windows builds (async-rs#49)
Browse files Browse the repository at this point in the history
Currently deactivates windows docs build with `--feature docs`.
  • Loading branch information
skade authored Aug 16, 2019
1 parent 2207eae commit 7e5ff94
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7e5ff94

Please sign in to comment.