Last active
November 7, 2017 14:04
-
-
Save aoudiamoncef/a78bf59c1d1789dae8ae75e2289a47ff to your computer and use it in GitHub Desktop.
Android continuous integration using Travis CI (build, unit tests and connected tests using AVD)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more informations, please read official documentation -> https://docs.travis-ci.com/user/languages/android/ | |
sudo: false | |
language: android | |
jdk: oraclejdk8 | |
before_cache: | |
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock | |
- rm -rf $HOME/.gradle/caches/*/plugin-resolution/ | |
cache: | |
directories: | |
- $HOME/.gradle/caches/ | |
- $HOME/.gradle/wrapper/ | |
- $HOME/.android/build-cache | |
env: | |
global: | |
- ANDROID_API_LEVEL=26 | |
- ANDROID_BUILD_TOOLS=26.0.2 | |
android: | |
components: | |
- tools | |
- tools # Running this twice get's the latest build tools (https://github.com/codepath/android_guides/wiki/Setting-up-Travis-CI) | |
- platform-tools | |
- android-$ANDROID_API_LEVEL | |
- build-tools-$ANDROID_BUILD_TOOLS | |
script: | |
- ./gradlew clean test build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment