Merge pull request #3304 from phansch/travis_windows_part2

Install Windows SDK 10.0 on travis
This commit is contained in:
Philipp Hansch 2018-10-12 22:49:23 +02:00 committed by GitHub
commit 7efd4a585c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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: