snippetbashTip
bazel — Open-source build and test tool similar to Make, Maven, and Gradle. More information: <https://bazel
Viewed 0 times
commandbuildbazelsourceandcliopentest
Problem
How to use the
bazel command: Open-source build and test tool similar to Make, Maven, and Gradle. More information: <https://bazel.build/reference/command-line-reference>.Solution
bazel — Open-source build and test tool similar to Make, Maven, and Gradle. More information: <https://bazel.build/reference/command-line-reference>.Build the specified target in the workspace:
bazel build {{target}}Remove output files and stop the server if running:
bazel cleanStop the bazel server:
bazel shutdownDisplay runtime info about the bazel server:
bazel infoDisplay help:
bazel helpDisplay version:
bazel versionCode Snippets
Build the specified target in the workspace
bazel build {{target}}Remove output files and stop the server if running
bazel cleanStop the bazel server
bazel shutdownDisplay runtime info about the bazel server
bazel infoDisplay help
bazel helpContext
tldr-pages: common/bazel
Revisions (0)
No revisions yet.