Alexander Hans
Alexander Hans
Special blocks (admonissions) are renedered by themselves without including the rest of the page. A reference link from the bottom of the file is therefore not available and cannot be...
To avoid confusion, I updated this PR now to only use [pre-commit](https://pre-commit.com) to replace (and fix) the existing clang-format checks. Other checks can be added in follow-up PRs. Here is...
The `bin/check-formatting.sh` currently expects a path relative to `bin` (or absolute), but it's called in CI with paths relative to the repo root. So no checks are run. Since currently...
### What happened? I'm working on integrating support for gcc 12.2.0. I added the relevant entries to `_TOOLCHAINS` in `toolchain/defs.bzl` and built an updated sysroot, also updating `_SYSROOTS` in the...
### What happened? While the rules make sure to link against a rather old glibc, this is not true for libstdc++, which comes as part of gcc. The default build...
After setting up a local workspace as described in README.md, building a "real" example that depends on ROS packages fails: ``` $ bazel build @rules_ros//examples/bazel_simple_example:publisher DEBUG: Rule 'rules_ros' indicated that...
This drops the heuristic, since using it is a net negative. Improves the runtime by ~30% on Intel Core i7-12900k.
This is what I had in mind. I can add an example where we use `rules_py`, but wasn't sure whether pulling in `rules_py` just for this is justified. Fixes #458
I have a use case where I'd like to use the `py_binary` from [rules_py](https://github.com/aspect-build/rules_py) as the backend of `ros2_py_binary` instead of the default one from `rules_python`. My current solution is...
Bazel 8.0.0 flips `--incompatible_disallow_empty_glob` to true. We have quite a few empty globs. I was about to prepare a PR that fixes them for `bazel test //...` in the root...