mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
15 lines
330 B
YAML
15 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
|