Install Windows SDK 10.0 on travis

This commit is contained in:
Philipp Hansch 2018-10-12 22:04:58 +02:00
parent d445dbfe16
commit 0a1bae9507
No known key found for this signature in database
GPG Key ID: B6FA06A6E0E2665B
1 changed files with 10 additions and 5 deletions

View File

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