Skip to content

Instantly share code, notes, and snippets.

@ihsanbal
Forked from trinnguyen/config.yml
Created December 31, 2017 05:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihsanbal/a986300a467ce2f9ff360dd0f37f1017 to your computer and use it in GitHub Desktop.
Save ihsanbal/a986300a467ce2f9ff360dd0f37f1017 to your computer and use it in GitHub Desktop.
CircleCI 2.0 Android config with Keystore Signing
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
@Prasildas-AHM
Copy link

what will be the download_keystore.sh file look like?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment