travis: fix windows

pull/1110/head
Alexander Medvednikov 2019-07-12 20:58:43 +02:00 committed by GitHub
parent 14bbf766b0
commit 14a8f3dae3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -35,9 +35,12 @@ script:
fi
- |
if [[ "${TRAVIS_OS_NAME}" == "windows" ]]; then
choco install make
#choco install make
cp "C:\\ProgramData\\chocolatey\\bin\\gcc.exe" "C:\\ProgramData\\chocolatey\\bin\\cc.exe"
fi
- export VROOT=$(pwd)
- make
- make test
- |
if [[ "${TRAVIS_OS_NAME}" != "windows" ]]; then
make test
fi