Skip to content

Commit

Permalink
Add SKIP_PUSH_GCS env so we can run without a push to GCS
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsb committed Feb 26, 2015
1 parent c9c98ab commit 27c3031
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions hack/jenkins/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ docker images -q | xargs -r docker rmi
# Build
go run ./hack/e2e.go -v --build

# Push to GCS
./build/push-ci-build.sh
[[ ${KUBE_SKIP_PUSH_GCS:-} =~ ^[yY]$ ]] || {
# Push to GCS
./build/push-ci-build.sh
}

sha256sum _output/release-tars/kubernetes*.tar.gz

0 comments on commit 27c3031

Please sign in to comment.