forked from fossasia/susi_android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
45 lines (45 loc) · 1.25 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: 2
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-27-alpha
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Add SDK 28
command: echo yes | ${ANDROID_HOME}/tools/bin/sdkmanager "platforms;android-28"
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: lint check
command: ./gradlew lint
- run:
name: spotless check
command: ./gradlew spotlessCheck
- run:
command:
bash exec/prep-key.sh
- run:
name: Run Tests
command: ./gradlew build
- run:
command:
bash exec/apk-gen.sh
- store_artifacts:
path: app/build/reports
destination: reports
- store_artifacts:
path: app/build/outputs
destination: outputs
- store_test_results:
path: app/build/test-results