Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build and test infra fixes for godep v59+ #23202

Merged
merged 2 commits into from
Mar 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 3 additions & 10 deletions hack/jenkins/test-dockerized.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,9 @@ set -o xtrace

export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}

go get github.com/tools/godep
go get github.com/tools/godep && godep version
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
Expand All @@ -50,6 +41,8 @@ export KUBE_TIMEOUT='-timeout 300s'
export KUBE_INTEGRATION_TEST_MAX_CONCURRENCY=4
export LOG_LEVEL=4

cd /go/src/k8s.io/kubernetes

./hack/build-go.sh
godep go install ./...
./hack/install-etcd.sh
Expand Down