Skip to content

Instantly share code, notes, and snippets.

@es0329
Last active March 16, 2017 16:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save es0329/e1bb497e4db243ea0e6f815debffe029 to your computer and use it in GitHub Desktop.
Save es0329/e1bb497e4db243ea0e6f815debffe029 to your computer and use it in GitHub Desktop.
Experimenting with CircleCI and android-23, build-tools-23.0.3
#
# Build configuration for Circle CI
#
general:
artifacts:
- /home/ubuntu/Fool-Android/app/build/outputs/apk/
machine:
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
dependencies:
pre:
- echo yes | android update sdk --no-ui --all --filter tools,platform-tools
- echo yes | android update sdk --no-ui --all --filter build-tools-23.0.3,android-23
- echo yes | android update sdk --no-ui --all --filter extra-android-m2repository,extra-google-m2repository
override:
- ANDROID_HOME=/usr/local/android-sdk-linux ./gradlew dependencies
test:
override:
- (./gradlew assemble):
timeout: 360
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment