1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-17 10:30:03 +02:00

add CircleCI config file

This commit is contained in:
Ildar Mulyukov 2019-04-21 00:49:37 +06:00
parent f01c9414f5
commit f44140c89c

30
.circleci/config.yml Normal file
View File

@ -0,0 +1,30 @@
version: 2
jobs:
build:
working_directory: ~/code
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: echo y | android update sdk --no-ui --all --filter tools,platform-tools,build-tools-28.0.3,android-28,extra-android-m2repository
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- store_artifacts:
path: app/build/reports
destination: reports
- store_test_results:
path: app/build/test-results
- run:
name: Run Build
command: ./gradlew build connectedCheck --stacktrace
- store_artifacts:
path: app/build/outputs/apk/debug/
destination: artifact-file