1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-11 14:17:08 +02:00
Smack/.travis.yml
2015-04-04 17:16:27 +02:00

16 lines
330 B
YAML

language: android
android:
components:
- android-8
jdk:
- oraclejdk8
- oraclejdk7
install: gradle assemble
script: gradle check
after_success:
- JAVAC_VERSION=$((javac -version) 2>&1)
# Only run jacocoRootReport in the Java7 build
- if [[ "$JAVAC_VERSION" = javac\ 1.7.* ]]; then gradle jacocoRootReport coveralls; fi