Commit 5bca864d authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #36119 from rmmh/godep-restore

Automatic merge from submit-queue Retry "godep restore" once in verify-dockerized.sh This should fix #36110. The current flake rate is 0.5%, so with the unrealistic assumption of uncorrelated flakes, a single retry will bring it down to <0.01% flake rate.
parents d34c02f1 bfae6740
...@@ -39,7 +39,8 @@ export LOG_LEVEL=4 ...@@ -39,7 +39,8 @@ export LOG_LEVEL=4
cd /go/src/k8s.io/kubernetes cd /go/src/k8s.io/kubernetes
# hack/verify-client-go.sh requires all dependencies exist in the GOPATH. # hack/verify-client-go.sh requires all dependencies exist in the GOPATH.
godep restore # the retry helps avoid flakes while keeping total time bounded.
godep restore || godep restore
./hack/install-etcd.sh ./hack/install-etcd.sh
make verify make verify
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment