bazel: add page (#8694)

pull/1/head
Saikat Sengupta 2022-10-10 08:26:28 +05:30 committed by GitHub
parent 91c429faf7
commit 848a515d0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
pages/common/bazel.md Normal file
View File

@ -0,0 +1,28 @@
# 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 clean`
- Stop the bazel server:
`bazel shutdown`
- Display runtime info about the bazel server:
`bazel info`
- Display help:
`bazel help`
- Display version:
`bazel version`