Milan Vukov
Milan Vukov
So, I have the following config (using `rules_foreign_cc` 0.7.1, Bazel 4.1, Ubuntu 20.04): * workspace file: ``` http_archive( name = "openssl", build_file = "//:openssl.BUILD.bazel", sha256 = "f89199be8b23ca45fc7cb9f1d8d3ee67312318286ad030f5316aca6462db6c96", strip_prefix = "openssl-1.1.1m",...
The problematic line is https://github.com/bazelbuild/rules_foreign_cc/blob/0.7.1/foreign_cc/private/framework/toolchains/linux_commands.bzl#L77. I found this out when building with remote cache turned on (gcloud in this use-case). Here, `outputUserRoot` looks like `outputRoot/[email protected]` and the substitution fails. It's...
According to the official docs for [Any](https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto#L97-L124) the generated JSON should have this extra field `@type` and the value directly embedded. What I see in the generated code from ts-proto...
In the workspace file of the protobufjs example I just added at the bottom: ``` http_archive( name = "io_bazel_rules_docker", sha256 = "b1e80761a8a8243d03ebca8845e9cc1ba6c82ce7c5179ce2b295cd36f7e394bf", urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.25.0/rules_docker-v0.25.0.tar.gz"], ) load( "@io_bazel_rules_docker//repositories:repositories.bzl", container_repositories =...
### What happened? It looks like the generated venv isn't complete. I cannot import repo-local packages with repo-relative import mechanism. ### Version Development (host) and target OS/architectures: Ubuntu 20.04 Output...
### What happened? Calling a py_binary in a subprocess fails if called with extra env vars. I prepared a demonstration in this branch: https://github.com/oqton/rules_py/tree/feature/subprocess_env_bug. Here is the output I get:...
### What happened? Looks like ts_project -> js_binary -> docker image misses routing transitive npm deps. Reproduced a bug in https://github.com/oqton/rules_ts/tree/feature/rules_docker_bug. The issue looks very similar to https://github.com/aspect-build/rules_jest/issues/72 to me....
I think the idea was to use internally actionlib::SimpleActionServer::shutdown(), but the inherited actionlib::ActionServerBase::shutdown() simply does not exist. I get: ```cpp rtt_ros_integration/rtt_actionlib/include/rtt_actionlib/rtt_simple_action_server.h:70:4: error: ‘class rtt_actionlib::RTTActionServer’ has no member named ‘shutdown’ ```
Typically cross-compilation does not work well with pkg-config when one uses a custom rootfs. Therefore, I suggest that by default `find_package(Eigen3 QUIET)` is used, and if that does not work...
https://github.com/mvukov/optimus/pull/81: This is what I get on my local machine w/ Ubuntu 22.04 (I also got the same error or another machine w/ the same OS). ``` bazel run //:refresh_compile_commands...