From 70813d6bb54f1bf1e8795132b188875cd4ffc8be Mon Sep 17 00:00:00 2001 From: Jeff Grafton Date: Fri, 18 Mar 2016 12:31:58 -0700 Subject: [PATCH] Pin to godep v58 in Jenkins unit/integration --- hack/jenkins/test-dockerized.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hack/jenkins/test-dockerized.sh b/hack/jenkins/test-dockerized.sh index 2c1e7e062e..218850dc08 100755 --- a/hack/jenkins/test-dockerized.sh +++ b/hack/jenkins/test-dockerized.sh @@ -29,6 +29,15 @@ export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH} go get github.com/tools/godep go get github.com/jstemmer/go-junit-report +# godep v59+ has issues with our GOPATH munging, so pin to v58 for now. +# https://github.com/kubernetes/kubernetes/issues/23200 +( + cd ${GOPATH}/src/github.com/tools/godep + git checkout v58 + godep go install +) +godep version + # Enable the Go race detector. export KUBE_RACE=-race # Disable coverage report