Skip to content

Commit

Permalink
[ci] Configure CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
kyori19 committed Sep 3, 2019
1 parent 9e0e2d5 commit a3a6b66
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,29 @@
version: 2
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-28-alpha
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
command: sudo chmod +x ./gradlew
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Build App
command: ./gradlew assembleGreen
- store_artifacts:
path: app/build/outputs/apk/green/debug
prefix: apk
# See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples
9 changes: 8 additions & 1 deletion app/build.gradle
Expand Up @@ -29,13 +29,20 @@ android {
}
}
}
signingConfigs {
debug {
storeFile file('../debug.keystore')
}
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles 'proguard-rules.pro'
}
debug {}
debug {
signingConfig signingConfigs.debug
}
}

flavorDimensions "color"
Expand Down
Binary file added debug.keystore
Binary file not shown.

0 comments on commit a3a6b66

Please sign in to comment.