From f73254826d1a8c22b215bc25d60fe724f93e4221 Mon Sep 17 00:00:00 2001 From: Joe Finney Date: Wed, 25 Jan 2017 13:25:01 -0800 Subject: [PATCH] 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. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 36ff991e567..79ae87c9f02 100644 --- a/Makefile +++ b/Makefile @@ -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)