Configure Travis to cache Gradle dependencies
See http://docs.travis-ci.com/user/caching/
This commit is contained in:
parent
ab2ed4130b
commit
7e12cfe071
|
@ -11,6 +11,11 @@ script:
|
||||||
after_success:
|
after_success:
|
||||||
- ./gradlew jacocoTestReport coveralls
|
- ./gradlew jacocoTestReport coveralls
|
||||||
|
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- .gradle
|
||||||
|
- $HOME/.gradle
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
channels: chat.freenode.net#ethereumj
|
channels: chat.freenode.net#ethereumj
|
||||||
|
|
Loading…
Reference in New Issue