what is the optimal cache setting for Grail 2.x app running on Travis CI -


on travis ci can specify cached directories:

https://docs.travis-ci.com/user/caching/

so i've specified following configuration:

  cache:     directories:     - node_modules     - modelcataloguecoreplugin/target/work/plugins     - modelcataloguecoreplugintestapp/target/work/plugins     - $home/.m2     - $home/.grails/ivy-cache     - $home/.grails/wrapper 

yet when run ./grailsw test-app lot of dependencies not retrieved cache download instead.

are there other directories suitable caching i'm missing?


Comments

Popular posts from this blog

How to start daemon on android by adb -

testing - Detect whether test has failed within fixture -

Angularjs unit testing - ng-disabled not working when adding text to textarea -