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.
pull/6/head
Joe Finney 2017-01-25 13:25:01 -08:00
parent 90b5d4cbd8
commit f73254826d
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)