Merge pull request #40480 from spxtr/faster-build

Automatic merge from submit-queue (batch tested with PRs 38739, 40480, 40495, 40172, 40393)

Don't build //build/... with "make bazel-build".

This makes "make bazel-build" no longer build docker images and
release tars, which are the slowest and least incremental parts. They
will still be built in CI since we run //:ci-artifacts.

**Release note**:
```release-note
NONE
```
pull/6/head
Kubernetes Submit Queue 2017-01-25 21:20:30 -08:00 committed by GitHub
commit e19f1fe444
1 changed files with 2 additions and 2 deletions

View File

@ -483,7 +483,7 @@ bazel-build:
@echo "$$BAZEL_BUILD_HELP_INFO"
else
bazel-build:
bazel build //cmd/... //pkg/... //federation/... //plugin/... //build/... //examples/... //test/... //third_party/...
bazel build //cmd/... //pkg/... //federation/... //plugin/... //third_party/... //examples/... //test/...
endif
@ -498,7 +498,7 @@ endef
@echo "$$BAZEL_TEST_HELP_INFO"
else
bazel-test:
bazel test //cmd/... //pkg/... //federation/... //plugin/... //build/... //third_party/... //hack/... //hack:verify-all
bazel test //cmd/... //pkg/... //federation/... //plugin/... //third_party/... //hack/... //hack:verify-all
endif
ifeq ($(PRINT_HELP),y)