This cheat-sheet provides a quick reference for the most common commands and operations.
The compile-commands.json file is used by the clangd extension in VSCode to provide intellisense. You may need to generate this file if you're using clangd.
To generate a compile-commands.json file, run the following command in your shell:
bazel run //:compile_commandsTo generate a code coverage report, run the following command:
bazel coverage -c dbg --nocache_test_results --combined_report=lcov //lib/runtime:allAfter generating the report, you can view it by running:
genhtml --branch-coverage --output genhtml "$(bazel info output_path)/_coverage/_coverage_report.dat"For more details on code coverage with Bazel, visit bazel.build/configure/coverage