From 571f1a08f34837f145f3d3a7c764ebabc2bb4403 Mon Sep 17 00:00:00 2001 From: Mike Splain Date: Fri, 23 Feb 2018 18:03:31 -0500 Subject: [PATCH] Update docs --- docs/development/bazel.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/docs/development/bazel.md b/docs/development/bazel.md index 69b5881f19..07187ec398 100644 --- a/docs/development/bazel.md +++ b/docs/development/bazel.md @@ -12,11 +12,23 @@ While bazel works well for small projects, building with kubernetes still has a ## How to run -Build: `bazel build //cmd/... //pkg/... //channels/... //nodeup/... //channels/... //protokube/... //dns-controller/...` +``` +make bazel-build +make bazel-build-cli -Test: `bazel test //cmd/... //pkg/... //channels/... //nodeup/... //channels/... //protokube/... //dns-controller/...` +# To build end to end and upload to s3 +make bazel-upload +``` -Regenerate bazel files using gazelle: `bazel run //:gazelle` +Test: +``` +make bazel-test +``` + +Regenerate bazel files using gazelle: +``` +make bazel-gazelle +``` ## Other changes needed