LinuxCommandLibrary

bazel

Open-source build and test tool similar to Make, Maven, and Gradle.

TLDR

Build the specified target in the workspace

$ bazel build [target]
copy


Remove output files and stop the server if running
$ bazel clean
copy


Stop the bazel server
$ bazel shutdown
copy


Display runtime info about the bazel server
$ bazel info
copy


Display help
$ bazel help
copy


Display version
$ bazel version
copy

Copied to clipboard