Skip to content

Commit

Permalink
Save/restore dependencies (#96)
Browse files Browse the repository at this point in the history
- save and restore dependencies
  • Loading branch information
electrostat authored Mar 26, 2018
1 parent bb3d59e commit 73b20cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
key: jars-{{ checksum "build.gradle" }}-{{ checksum "gradle/dependencies.gradle" }}
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
key: jars-{{ checksum "build.gradle" }}-{{ checksum "gradle/dependencies.gradle" }}
- run:
name: Check code style
command: make checkstyle
Expand Down

0 comments on commit 73b20cd

Please sign in to comment.