You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am debugging a performance regression in ROS 2 Debians.
As I'm doing this, I'm using timeshift to backup / restore things, so I have an "old and good" install of /opt/ros/humble, and a "new and bad" install of /opt/ros/humble.
I want to swap back and forth by changing the workspace path.
...
File "{output_base}/external/ros2/BUILD.bazel", line 11, column 16, in <toplevel>
share_filegroup(
File "{output_base}/external/ros2/tools/common.bzl", line 8, column 45, in share_filegroup
srcs = [path for path in native.glob(
Error in glob: pattern cannot be absolute
Looking at $(bazel info output_base)/external/ros2/BUILD.bazel, I see this around line 11:
share_filegroup(
name = "ament_cmake_core_share",
share_directories = ["/opt/ros/humble/share/ament_cmake_core", "/opt/ros/humble/share/ament_index"],
)
Somehow, we're just ignoring the user specified directory?
The text was updated successfully, but these errors were encountered:
I am debugging a performance regression in ROS 2 Debians.
As I'm doing this, I'm using
timeshift
to backup / restore things, so I have an "old and good" install of/opt/ros/humble
, and a "new and bad" install of/opt/ros/humble
.I want to swap back and forth by changing the workspace path.
On latest
main
(955245e), the following works:However, the following fails on latest
main
(955245e):The failure states:
Looking at
$(bazel info output_base)/external/ros2/BUILD.bazel
, I see this around line 11:Somehow, we're just ignoring the user specified directory?
The text was updated successfully, but these errors were encountered: