Moved to CircleCI 2.0 configuration.

This commit is contained in:
Erik C. Thauvin 2019-09-28 08:59:24 -07:00
parent c526ac4057
commit 816ea9006e

View file

@ -1,30 +1,40 @@
version: 2
defaults: &defaults
working_directory: ~/code
environment:
JVM_OPTS: -Xmx3200m
TERM: dumb
CI: true
defaults_gradle: &defaults_gradle
steps:
- checkout
- restore_cache:
keys: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Setup Google Services
command: echo $GOOGLE_SERVICES | base64 -di > app/google-services.json
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- save_cache:
paths: ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Run Tests
command: ./gradlew link test
- store_artifacts:
path: app/build/reports
destination: reports
- store_test_results:
path: app/build/test-results
version: 2.0
jobs:
build:
working_directory: ~/code
build_gradle:
<<: *defaults
docker:
- image: circleci/android:api-28
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- 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: Setup Google Services
command: echo $GOOGLE_SERVICES | base64 -di > app/google-services.json
- run:
name: Run Tests
command: ./gradlew lint test
- store_artifacts:
path: app/build/reports
destination: reports
- store_test_results:
path: app/build/test-results
<<: *defaults_gradle