Created
March 5, 2019 18:04
-
-
Save TomGranot/d70ee569fd50e797fdd0ab4637ca3ddf to your computer and use it in GitHub Desktop.
Config.yml part 5
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
- run: | |
name: Approve SDK Licenses | |
# Captures SIGPIPE 141 error but still allow repeating "y" to accept all licenses | |
command: yes | sdkmanager --licenses || if [ $? -ne '141' ]; then exit $?; fi; | |
- run: | |
name: Download Dependencies | |
command: ./gradlew androidDependencies | |
- save_cache: | |
paths: | |
- ~/.gradle | |
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment