added circle ci config
This commit is contained in:
parent
e787613704
commit
1822ad1818
1 changed files with 31 additions and 0 deletions
31
OlympusServices/app/.circleci/config.yml
Normal file
31
OlympusServices/app/.circleci/config.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
working_directory: ~/SEG2105-Olympus/OlympusServices
|
||||
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
|
||||
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: Run UnitTest
|
||||
command: ./gradlew test
|
||||
- store_artifacts:
|
||||
path: app/build/outputs/apk/debug/
|
||||
destination: apks/
|
||||
- store_test_results:
|
||||
path: app/build/test-results
|
||||
|
Loading…
Reference in a new issue