From 1dbfaa8ef62a532266fe0a58f76f598aa184d33b Mon Sep 17 00:00:00 2001 From: spxtr Date: Tue, 27 Dec 2016 11:48:23 -0800 Subject: [PATCH] Add bazel-build and bazel-test to the Makefile. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index f0a8c9c01282e..32a61590a20d2 100644 --- a/Makefile +++ b/Makefile @@ -467,3 +467,11 @@ else help: hack/make-rules/make-help.sh endif + +# Non-dockerized bazel rules. +.PHONY: bazel-build bazel-test +bazel-build: + bazel build //cmd/... //pkg/... //federation/... //plugin/... //build/... //examples/... //test/... //third_party/... + +bazel-test: + bazel test --test_output=errors //cmd/... //pkg/... //federation/... //plugin/... //build/... //third_party/...