diff --git a/hack/test_integration.sh b/hack/test_integration.sh index c5069a909e..9bfe981603 100755 --- a/hack/test_integration.sh +++ b/hack/test_integration.sh @@ -13,7 +13,10 @@ TMPFILE="${TMPDIR}/test-integration.log" function test-integration() { ./build/shell.sh -c ' ./hack/install-etcd.sh -PATH=$(pwd)/third_party/etcd:${PATH} make test-integration +./hack/run-in-gopath.sh go install ./hack/make-rules/helpers/go2make +mkdir .make +./hack/run-in-gopath.sh go2make k8s.io/kubernetes/... --prune k8s.io/kubernetes/staging --prune k8s.io/kubernetes/vendor k8s.io/kubernetes/vendor/k8s.io/... > .make/go-pkgdeps.mk +DBG_CODEGEN=1 PATH=$(pwd)/third_party/etcd:${PATH} make test-integration ' }