vert-x3 / issues

Apache License 2.0
37 stars 7 forks source link

Travis CI dependencies caching #447

Closed gmariotti closed 5 years ago

gmariotti commented 5 years ago

This issue is for tracking all projects that need to have their .travis.yml updated based on this discussion

In practice it means adding the following lines

branches:
  only:
  - master
  - /^\d+\.\d+$/
----- FROM HERE -----
cache:
  directories:
    - $HOME/.m2
before_cache:
  - rm -rf $HOME/.m2/repository/io/vertx/
----- TO HERE -----
jobs:

Projects:

slinkydeveloper commented 5 years ago

Done