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`