Bazel C++ pybind11 sample with tests and GitHub CI support.
This project should run on GNU/Linux, MacOS and Windows.
You'll need:
- "Bazel >= 4.0".
The project layout is as follow:
- WORKSPACE Top-level for Bazel based build.
- pure_lib Pure python library to check Python support.
- native_lib Simple C++ library.
- python Python wrapper using pybind11.
To build this example you should use:
-
on UNIX:
bazel build --cxxopt=-std=c++17 ...
-
on Windows when using MSVC:
bazel build --cxxopt="-std:c++17" ...
To build this example you should use:
-
on UNIX:
bazel test --cxxopt=-std=c++17 ...
-
on Windows when using MSVC:
bazel test --cxxopt="-std:c++17" ...
Please take a look at .github/workflows to find the configuration file for each jobs.
To install bazel on each hosted runner, follow these links: ref: https://docs.github.com/en/actions/using-github-hosted-runners/customizing-github-hosted-runners#installing-software-on-windows-runners
- Linux (Ubuntu latest LTS) ->
apt-get install bazel
ref: https://docs.bazel.build/versions/main/install-ubuntu.html
(as of 06/2021 Ubuntu 20.04 LTS is still not supported according to the doc...) - MacOS ->
brew install bazel
ref: https://formulae.brew.sh/formula/bazel#default - Windows ->
choco install bazel
ref: https://community.chocolatey.org/packages/bazel/
Few links on the subject...
Project layout:
- The Pitchfork Layout Revision 1 (cxx-pflR1)
Bazel:
Image has been generated using plantuml:
plantuml -Tsvg docs/{file}.dot
So you can find the dot source files in docs.
Apache 2. See the LICENSE file for details.
This is not an official Google product, it is just code that happens to be owned by Google.