-
-
Save sanjmen/3a00170176621ee8e458 to your computer and use it in GitHub Desktop.
CircleCI Android Configuration
This file contains hidden or 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
| machine: | |
| java: | |
| version: openjdk7 | |
| environment: | |
| ANDROID_HOME: /home/ubuntu/android | |
| JAVA_OPTS: "-Xmx2048m -XX:MaxPermSize=1024m" | |
| dependencies: | |
| cache_directories: | |
| - ~/.android | |
| - ~/android | |
| override: | |
| - ./install-dependencies.sh | |
| test: | |
| pre: | |
| - $ANDROID_HOME/tools/emulator -avd test-target -no-skin -no-audio -no-window -no-boot-anim: | |
| background: true | |
| parallel: true | |
| - ./wait.sh: | |
| parallel: true | |
| override: | |
| - ./gradlew connectedAndroidTestDebug -PdisablePreDex | |
| deployment: | |
| develop: | |
| branch: develop | |
| commands: | |
| - ./gradlew assemble | |
| - ./gradlew crashlyticsUploadDistributionDebug crashlyticsUploadDistributionRelease |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment