-
Notifications
You must be signed in to change notification settings - Fork 92
Add Coursier to Travis cache #357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -45,8 +45,10 @@ script: | |||||
before_cache: | ||||||
- find $HOME/.sbt -name "*.lock" | xargs rm | ||||||
- find $HOME/.ivy2/cache -name "ivydata-*.properties" | xargs rm | ||||||
- find $HOME/.coursier -name "*.lock" | xargs rm | ||||||
cache: | ||||||
directories: | ||||||
- $HOME/.ivy2/cache | ||||||
- $HOME/.sbt | ||||||
- $HOME/.sdkman | ||||||
- $HOME/.coursier | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
https://get-coursier.io/docs/cache says:
In other words, the location of the Coursier cache changes depending on if you've ever ran older coursier or not. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. gah There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
How does Coursier determine that? Travis doesn't cache There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess coursier will use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably search in
.cache/coursier
too?