diff options
author | 2017-08-19 12:47:48 -0700 | |
---|---|---|
committer | 2017-08-19 20:47:48 +0100 | |
commit | a682f73b5cbfb693bfb87daf94732b41dbb5b540 (patch) | |
tree | 8f8fbe3d65f75cf3c703792194ad59aa5084a737 | |
parent | 8749b870c4b2c5db823a08f42f6d5d16d6a3cf33 (diff) | |
download | coredns-a682f73b5cbfb693bfb87daf94732b41dbb5b540.tar.gz coredns-a682f73b5cbfb693bfb87daf94732b41dbb5b540.tar.zst coredns-a682f73b5cbfb693bfb87daf94732b41dbb5b540.zip |
Disable Travis cache (#953)
It looks like the cached path
- `$GOPATH/src`
- `$GOPATH/pkg`
overlaps with the source path of
`$GOPATH/src/github.com/coredns/coredns`.
Disable the cache for now.
May enable cache in the future if we could exclude
`$GOPATH/src/github.com/coredns/coredns` from `$GOPATH/src`.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index f7f04b5a1..1e401cedd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,11 +15,6 @@ go_import_path: github.com/coredns/coredns git: depth: 3 -cache: - directories: - - $GOPATH/src - - $GOPATH/pkg - env: - TEST_TYPE=coverage ETCD_VERSION=2.3.1 K8S_VERSION=1.5.0 KUBECTL="docker exec hyperkube /hyperkube kubectl" - TEST_TYPE=integration ETCD_VERSION=2.3.1 K8S_VERSION=1.5.0 KUBECTL="docker exec hyperkube /hyperkube kubectl" |