Playground for C++ projects and tests, bazel, Github Workflows (CI) and more.
Use bazel
to build, run and test targets in this repository:
bazel build //...
bazel run //apps/compiletime_polynomial:main
bazel test //...
Using bazelisk
allows to automatically download & execute the correct version of bazel
, as pinned in the .bazelversion
file. To install bazelisk
, follow
the instructions on https://docs.bazel.build/versions/master/install-bazelisk.html.
buildifier
is a tool for formatting bazel BUILD and .bzl files with a standard convention. It can be fetched, built and run on all files directly from this workspace:
bazel run //:buildifier
Install necessary tools for test coverage analysis via the lcov
package and then run:
# Analyze coverage for all test targets and store in coverage.dat file
bazel coverage //...
# Generate HTML report and store in coverage directory
genhtml bazel-out/_coverage/_coverage_report.dat --output-directory coverage