Skip to content

Commit

Permalink
Merge pull request kubernetes#4873 from justinsb/add_skip_push_gcs_2
Browse files Browse the repository at this point in the history
Add SKIP_PUSH_GCS env so we can run without a push to GCS
  • Loading branch information
thockin committed Feb 26, 2015
2 parents 6b19c13 + 27c3031 commit 7fe7de4
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 7fe7de4

Please sign in to comment.