Skip to content

Commit

Permalink
Merge pull request #231 from Droidcon-Boston/ne/2019Release
Browse files Browse the repository at this point in the history
2019 Release of the App
  • Loading branch information
n8ebel authored Apr 11, 2019
2 parents 1440155 + 17a28ee commit a63cda9
Show file tree
Hide file tree
Showing 202 changed files with 13,686 additions and 1,810 deletions.
42 changes: 42 additions & 0 deletions .circleci/config.yml
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
778 changes: 0 additions & 778 deletions Droidcon-Boston/.idea/codeStyleSettings.xml

This file was deleted.

180 changes: 180 additions & 0 deletions Droidcon-Boston/.idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Droidcon-Boston/.idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a63cda9

Please sign in to comment.