Skip to content

Commit 1362f2b

Browse files
committedDec 30, 2018
caching on circleci builds
1 parent 19aabdb commit 1362f2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- checkout
1111
- restore_cache:
12-
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
12+
key: jars-{{ checksum "build.gradle" }}--{{ checksum "widget-helper/build.gradle" }}--{{ checksum "example/build.gradle" }}
1313
- run:
1414
name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
1515
command: sudo chmod +x ./gradlew
@@ -23,7 +23,7 @@ jobs:
2323
- save_cache:
2424
paths:
2525
- ~/.gradle
26-
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
26+
key: jars-{{ checksum "build.gradle" }}--{{ checksum "widget-helper/build.gradle" }}--{{ checksum "example/build.gradle" }}
2727
- run:
2828
name: Run Tests
2929
command: ./gradlew :widget-helper:lint test

0 commit comments

Comments
 (0)
Please sign in to comment.