-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #231 from Droidcon-Boston/ne/2019Release
2019 Release of the App
- Loading branch information
Showing
202 changed files
with
13,686 additions
and
1,810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/android:api-28-alpha | ||
|
||
environment: | ||
JVM_OPTS: -Xmx3200m | ||
|
||
steps: | ||
- checkout: | ||
|
||
- restore_cache: | ||
key: jars-{{ checksum "Droidcon-Boston/build.gradle" }}-{{ checksum "Droidcon-Boston/app/build.gradle" }} | ||
|
||
- run: | ||
name: Chmod permissions #if permission for Gradlew Dependencies fail, use this. | ||
command: cd Droidcon-Boston && pwd && ls && sudo chmod +x ./gradlew | ||
|
||
- run: | ||
name: Download Dependencies | ||
command: cd Droidcon-Boston && ./gradlew androidDependencies | ||
|
||
- save_cache: | ||
paths: | ||
- .gradle | ||
key: jars-{{ checksum "Droidcon-Boston/build.gradle" }}-{{ checksum "Droidcon-Boston/app/build.gradle" }} | ||
|
||
- run: | ||
name: Static Analysis Checks | ||
command: cd Droidcon-Boston && ./gradlew detekt ktlintCheck lint | ||
|
||
- run: | ||
name: Run Tests | ||
command: cd Droidcon-Boston && ./gradlew test | ||
|
||
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ | ||
path: Droidcon-Boston/app/build/reports | ||
destination: reports | ||
|
||
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ | ||
path: Droidcon-Boston/app/build/test-results |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.