From 7e5ff9409b157763dbe6b21853270fb3c5866efb Mon Sep 17 00:00:00 2001 From: Florian Gilcher Date: Fri, 16 Aug 2019 21:46:23 +0200 Subject: [PATCH] Reenable windows builds (#49) Currently deactivates windows docs build with `--feature docs`. --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 06bc7c6e..f41138f0 100644 --- a/.travis.yml +++ b/.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