From 29cd9597fa2e20f3aaa4297f1b8a33533395e996 Mon Sep 17 00:00:00 2001 From: Carlos Espinoza Curto <148376273+Carlosespicur@users.noreply.github.com> Date: Thu, 16 Oct 2025 11:57:30 +0200 Subject: [PATCH] Fix ament_cmake dependency (#795) * Fix ament_cmake dependency Signed-off-by: Carlosespicur * Ignore rmw_test_fixture package Signed-off-by: Carlosespicur * Add ament_lint_auto dependency Signed-off-by: Carlosespicur --------- Signed-off-by: Carlosespicur (cherry picked from commit 1662e44bc968121393a3fefb51447e2444d63844) --- package.xml | 2 ++ scripts/create_firmware_ws.sh | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/package.xml b/package.xml index 97722d50..112a679a 100644 --- a/package.xml +++ b/package.xml @@ -12,6 +12,8 @@ python3-yaml clang-tidy + ament_cmake + ament_lint_auto flex bison libncurses-dev diff --git a/scripts/create_firmware_ws.sh b/scripts/create_firmware_ws.sh index fc3b6665..a2beb6bc 100755 --- a/scripts/create_firmware_ws.sh +++ b/scripts/create_firmware_ws.sh @@ -104,6 +104,8 @@ if [ $RTOS != "host" ]; then pushd $FW_TARGETDIR/$DEV_WS_DIR >/dev/null # Fix failing build by ignoring rmw_test_fixture_implementation. touch ros2/ament_cmake_ros/rmw_test_fixture_implementation/COLCON_IGNORE + # Fix failing build by ignoring rmw_test_fixture. + touch ros2/ament_cmake_ros/rmw_test_fixture/COLCON_IGNORE colcon build set +o nounset # source dev workspace @@ -116,4 +118,3 @@ rosdep install --os=ubuntu:noble -y --from-paths $PREFIX/config/$RTOS/$TARGET_FO # Creating specific firmware folder . $PREFIX/config/$RTOS/$TARGET_FOLDER/create.sh -