From 848a515d0b5f2c610f694ecabb52b0799da9908d Mon Sep 17 00:00:00 2001 From: Saikat Sengupta <41847480+saikatsgupta@users.noreply.github.com> Date: Mon, 10 Oct 2022 08:26:28 +0530 Subject: [PATCH] bazel: add page (#8694) --- pages/common/bazel.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/bazel.md diff --git a/pages/common/bazel.md b/pages/common/bazel.md new file mode 100644 index 0000000000..193f937d52 --- /dev/null +++ b/pages/common/bazel.md @@ -0,0 +1,28 @@ +# bazel + +> Open-source build and test tool similar to Make, Maven, and Gradle. +> More information: . + +- Build the specified target in the workspace: + +`bazel build {{target}}` + +- Remove output files and stop the server if running: + +`bazel clean` + +- Stop the bazel server: + +`bazel shutdown` + +- Display runtime info about the bazel server: + +`bazel info` + +- Display help: + +`bazel help` + +- Display version: + +`bazel version`