mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
21 lines
416 B
YAML
21 lines
416 B
YAML
# We still need android to get the build tools/support libraries
|
|
language: android
|
|
android:
|
|
components:
|
|
- tools
|
|
- platform-tools
|
|
- extra-android-m2repository
|
|
- extra-android-support
|
|
- extra-google-m2repository
|
|
- build-tools-21.1.1
|
|
- android-21
|
|
|
|
before_script:
|
|
- yes | android update sdk -u -t 1,2,3
|
|
|
|
script:
|
|
- ./gradlew test
|
|
|
|
after_success:
|
|
- ./gradlew jacocoTestReport coveralls
|