mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
b43ce4454f
Have to install Android manually, but allows me to upgrade on my schedule instead of waiting for Travis to update the components. Should fix #9, not going to worry about release builds yet
13 lines
301 B
YAML
13 lines
301 B
YAML
language: java
|
|
env:
|
|
- COMPONENTS="tools,platform-tools,build-tools-21.1.1,android-21,extra-android-m2repository,extra-android-support,extra-google-m2repository"
|
|
|
|
before_script:
|
|
- ./android_install.sh $COMPONENTS
|
|
|
|
script:
|
|
- ./gradlew test
|
|
|
|
after_success:
|
|
- ./gradlew jacocoTestReport coveralls
|