Skip to content

Commit 7b6c23e

Browse files
authored
Merge pull request #357 from ashawley/coursier-travis-cache
Add Coursier to Travis cache
2 parents 1f17d36 + 9e07d8f commit 7b6c23e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ commands:
2727
- save_cache:
2828
key: sbt-deps-v1-{{ checksum "build.sbt" }}
2929
paths:
30+
- "~/.coursier"
3031
- "~/.ivy2/cache"
3132
- "~/.sbt"
3233
- "~/.m2"

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,10 @@ script:
4545
before_cache:
4646
- find $HOME/.sbt -name "*.lock" | xargs rm
4747
- find $HOME/.ivy2/cache -name "ivydata-*.properties" | xargs rm
48+
- find $HOME/.coursier -name "*.lock" | xargs rm
4849
cache:
4950
directories:
5051
- $HOME/.ivy2/cache
5152
- $HOME/.sbt
5253
- $HOME/.sdkman
54+
- $HOME/.coursier

0 commit comments

Comments
 (0)