Merge pull request #72173 from krzyzacy/fix-gopath

make integration/verify script look for k8s under GOPATH
pull/564/head
Kubernetes Prow Robot 2018-12-18 19:10:35 -08:00 committed by GitHub
commit 111d4eac5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ export KUBE_KEEP_VERBOSE_TEST_OUTPUT=y
export KUBE_INTEGRATION_TEST_MAX_CONCURRENCY=4
export LOG_LEVEL=4
cd /go/src/k8s.io/kubernetes
cd "${GOPATH}/src/k8s.io/kubernetes"
make generated_files
go install ./cmd/...

View File

@ -38,6 +38,6 @@ export ARTIFACTS_DIR=${WORKSPACE}/artifacts
export LOG_LEVEL=4
cd /go/src/k8s.io/kubernetes
cd "${GOPATH}/src/k8s.io/kubernetes"
make verify