From a682f73b5cbfb693bfb87daf94732b41dbb5b540 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Sat, 19 Aug 2017 12:47:48 -0700 Subject: [PATCH] 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 --- .travis.yml | 5 ----- 1 file changed, 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"