mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-17 14:38:46 +00:00
Merge pull request #3304 from phansch/travis_windows_part2
Install Windows SDK 10.0 on travis
This commit is contained in:
commit
7efd4a585c
1 changed files with 10 additions and 5 deletions
15
.travis.yml
15
.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:
|
||||
|
|
Loading…
Add table
Reference in a new issue