Last active
October 19, 2018 14:58
-
-
Save trinnguyen/c85b9cc8ea170c2e5d422ab49d8273d9 to your computer and use it in GitHub Desktop.
CircleCI 2.0 Android config with Keystore Signing
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
version: 2 | |
jobs: | |
build: | |
working_directory: ~/code | |
docker: | |
- image: circleci/android:api-25-alpha | |
environment: | |
JVM_OPTS: -Xmx3200m | |
steps: | |
- checkout | |
- run: | |
name: export KEYSTORE path | |
command: echo 'export KEYSTORE=$(pwd)/signing.jks' >> $BASH_ENV | |
- run: | |
name: Download keystore signing | |
command: bash ./misc/download_keystore.sh | |
- restore_cache: | |
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} | |
- run: | |
name: Download Dependencies | |
command: ./gradlew androidDependencies | |
- save_cache: | |
paths: | |
- ~/.gradle | |
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} | |
- run: | |
name: Build assembleRelease | |
command: ./gradlew assembleRelease | |
- store_artifacts: | |
path: app/build/outputs/apk | |
destination: apk | |
- run: | |
name: Run Tests | |
command: ./gradlew lint test | |
- store_artifacts: | |
path: app/build/reports | |
destination: reports | |
- store_test_results: | |
path: app/build/test-results |
if [[ ${KEYSTORE_DOWNLOAD_URL} ]] then
curl -L -o KEYSTORE_FILE_NAME ${KEYSTORE_DOWNLOAD_URL} else
echo "No keystore Environment variable found"
fi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can your share your download_keystore.sh file. I am stuck somewhere in the code