try windows builds as well

This commit is contained in:
Anton Keks 2018-12-22 23:51:43 +02:00
parent c068f33c8c
commit 2e19cc3fa8

View File

@ -1,6 +1,7 @@
os:
- linux
- osx
- windows
dist: xenial
language: java
@ -15,3 +16,4 @@ addons:
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then xvfb-run -a ./gradlew test all; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./gradlew current; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install jdk8 && ./gradlew current; fi