about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hansch <dev@phansch.net>2018-10-12 22:04:58 +0200
committerPhilipp Hansch <dev@phansch.net>2018-10-12 22:04:58 +0200
commit0a1bae95074a682318e167bee55078dd8ccbdc51 (patch)
tree19f4d130ce10e1350f91d19f3dfc3c94cb81ac66
parentd445dbfe162212f90efbe2df9795a257a347a767 (diff)
downloadrust-0a1bae95074a682318e167bee55078dd8ccbdc51.tar.gz
rust-0a1bae95074a682318e167bee55078dd8ccbdc51.zip
Install Windows SDK 10.0 on travis
-rw-r--r--.travis.yml15
1 files changed, 10 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 5446f1ab568..818353e0c16 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,11 +24,16 @@ before_install:
 
 install:
   - |
-    if [ -z ${INTEGRATION} ] && [ "$TRAVIS_OS_NAME" == "linux" ]; then
-      . $HOME/.nvm/nvm.sh
-      nvm install stable
-      nvm use stable
-      npm install remark-cli remark-lint
+    if [ -z ${INTEGRATION} ]; then
+      if [ "$TRAVIS_OS_NAME" == "linux" ]; then
+        . $HOME/.nvm/nvm.sh
+        nvm install stable
+        nvm use stable
+        npm install remark-cli remark-lint
+      fi
+      if [ "$TRAVIS_OS_NAME" == "windows" ]; then
+        choco install windows-sdk-10.0
+      fi
     fi
 
 matrix: