travis: make.bat

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

View File

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