29 lines
774 B
YAML
29 lines
774 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
working_directory: ~/code
|
|
docker:
|
|
- image: circleci/android:api-28-alpha
|
|
environment:
|
|
JVM_OPTS: -Xmx3200m
|
|
steps:
|
|
- checkout
|
|
- run: git submodule sync
|
|
- run: git submodule update --init --recursive
|
|
- restore_cache:
|
|
key: jars-{{ checksum "build.gradle" }}
|
|
- run:
|
|
name: Run Build and Tests
|
|
command: ./gradlew assembleDebug check
|
|
- save_cache:
|
|
paths:
|
|
- ~/.gradle
|
|
- ~/.android/build-cache
|
|
key: jars-{{ checksum "build.gradle" }}
|
|
- store_artifacts:
|
|
path: mobile/build/outputs/apk
|
|
destination: apk
|
|
- store_artifacts:
|
|
path: mobile/build/reports
|
|
destination: reports
|