Last active
December 10, 2015 21:00
-
-
Save sjehutch/d4f248e08a3fd85ccadd to your computer and use it in GitHub Desktop.
travis.yml android
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
language: android | |
android: | |
components: | |
- platform-tools | |
- tools | |
- build-tools-23.0.1 | |
- extra-android-support | |
- extra-android-m2repository | |
- extra-google-google_play_services | |
- extra-google-m2repository | |
notifications: | |
slack: | |
rooms: | |
coppermobile:#travisci | |
on_success: always | |
on_failure: always | |
on_start: always | |
script: ./gradlew build assembleDebug | |
before_install: | |
- chmod a+x ./gradlew | |
- chmod a+x ./travis_upload_to_github.py | |
- sudo apt-get update -qq | |
- sudo apt-get install -y python2.7 | |
after_success: ./travis_upload_to_github.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment