Skip to content

Commit 01ca214

Browse files
committed
Bump kilted
Signed-off-by: Antón Casas <antoncasas@eprosima.com>
1 parent debdf1b commit 01ca214

2 files changed

Lines changed: 27 additions & 27 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Is possible to use a micro-ROS Agent just with this docker command:
5252

5353
```bash
5454
# Serial micro-ROS Agent
55-
docker run -it --rm --net=host microros/micro-ros-agent:rolling serial --dev [PORT] -v6
55+
docker run -it --rm --net=host microros/micro-ros-agent:kilted serial --dev [PORT] -v6
5656
```
5757

5858
## Purpose of the Project

libmicroros.mk

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ $(EXTENSIONS_DIR)/micro_ros_dev/install:
3838
cd $(EXTENSIONS_DIR); \
3939
rm -rf micro_ros_dev; \
4040
mkdir micro_ros_dev; cd micro_ros_dev; \
41-
git clone -b rolling https://github.com/ament/ament_cmake src/ament_cmake; \
42-
git clone -b rolling https://github.com/ament/ament_lint src/ament_lint; \
43-
git clone -b rolling https://github.com/ament/ament_package src/ament_package; \
44-
git clone -b rolling https://github.com/ament/googletest src/googletest; \
45-
git clone -b rolling https://github.com/ros2/ament_cmake_ros src/ament_cmake_ros; \
46-
git clone -b rolling https://github.com/ament/ament_index src/ament_index; \
41+
git clone -b kilted https://github.com/ament/ament_cmake src/ament_cmake; \
42+
git clone -b kilted https://github.com/ament/ament_lint src/ament_lint; \
43+
git clone -b kilted https://github.com/ament/ament_package src/ament_package; \
44+
git clone -b kilted https://github.com/ament/googletest src/googletest; \
45+
git clone -b kilted https://github.com/ros2/ament_cmake_ros src/ament_cmake_ros; \
46+
git clone -b kilted https://github.com/ament/ament_index src/ament_index; \
4747
touch src/ament_cmake_ros/rmw_test_fixture_implementation/COLCON_IGNORE; \
4848
colcon build --cmake-args -DBUILD_TESTING=OFF;
4949

@@ -57,26 +57,26 @@ $(EXTENSIONS_DIR)/micro_ros_src/src:
5757
mkdir micro_ros_src; cd micro_ros_src; \
5858
git clone -b ros2 https://github.com/eProsima/micro-CDR src/micro-CDR; \
5959
git clone -b ros2 https://github.com/eProsima/Micro-XRCE-DDS-Client src/Micro-XRCE-DDS-Client; \
60-
git clone -b rolling https://github.com/micro-ROS/rcl src/rcl; \
61-
git clone -b rolling https://github.com/ros2/rclc src/rclc; \
62-
git clone -b rolling https://github.com/micro-ROS/rcutils src/rcutils; \
63-
git clone -b rolling https://github.com/micro-ROS/micro_ros_msgs src/micro_ros_msgs; \
64-
git clone -b rolling https://github.com/micro-ROS/rmw-microxrcedds src/rmw-microxrcedds; \
65-
git clone -b rolling https://github.com/micro-ROS/rosidl_typesupport src/rosidl_typesupport; \
66-
git clone -b rolling https://github.com/micro-ROS/rosidl_typesupport_microxrcedds src/rosidl_typesupport_microxrcedds; \
67-
git clone -b rolling https://github.com/ros2/rosidl src/rosidl; \
68-
git clone -b rolling https://github.com/ros2/rosidl_dynamic_typesupport src/rosidl_dynamic_typesupport; \
69-
git clone -b rolling https://github.com/ros2/rmw src/rmw; \
70-
git clone -b rolling https://github.com/ros2/rcl_interfaces src/rcl_interfaces; \
71-
git clone -b rolling https://github.com/ros2/rosidl_defaults src/rosidl_defaults; \
72-
git clone -b rolling https://github.com/ros2/unique_identifier_msgs src/unique_identifier_msgs; \
73-
git clone -b rolling https://github.com/ros2/common_interfaces src/common_interfaces; \
74-
git clone -b rolling https://github.com/ros2/test_interface_files src/test_interface_files; \
75-
git clone -b rolling https://github.com/ros2/rmw_implementation src/rmw_implementation; \
76-
git clone -b rolling https://github.com/ros2/rcl_logging src/rcl_logging; \
77-
git clone -b rolling https://github.com/ros2/ros2_tracing src/ros2_tracing; \
78-
git clone -b rolling https://github.com/micro-ROS/micro_ros_utilities src/micro_ros_utilities; \
79-
git clone -b rolling https://github.com/ros2/rosidl_core src/rosidl_core; \
60+
git clone -b kilted https://github.com/micro-ROS/rcl src/rcl; \
61+
git clone -b kilted https://github.com/ros2/rclc src/rclc; \
62+
git clone -b kilted https://github.com/micro-ROS/rcutils src/rcutils; \
63+
git clone -b kilted https://github.com/micro-ROS/micro_ros_msgs src/micro_ros_msgs; \
64+
git clone -b kilted https://github.com/micro-ROS/rmw-microxrcedds src/rmw-microxrcedds; \
65+
git clone -b kilted https://github.com/micro-ROS/rosidl_typesupport src/rosidl_typesupport; \
66+
git clone -b kilted https://github.com/micro-ROS/rosidl_typesupport_microxrcedds src/rosidl_typesupport_microxrcedds; \
67+
git clone -b kilted https://github.com/ros2/rosidl src/rosidl; \
68+
git clone -b kilted https://github.com/ros2/rosidl_dynamic_typesupport src/rosidl_dynamic_typesupport; \
69+
git clone -b kilted https://github.com/ros2/rmw src/rmw; \
70+
git clone -b kilted https://github.com/ros2/rcl_interfaces src/rcl_interfaces; \
71+
git clone -b kilted https://github.com/ros2/rosidl_defaults src/rosidl_defaults; \
72+
git clone -b kilted https://github.com/ros2/unique_identifier_msgs src/unique_identifier_msgs; \
73+
git clone -b kilted https://github.com/ros2/common_interfaces src/common_interfaces; \
74+
git clone -b kilted https://github.com/ros2/test_interface_files src/test_interface_files; \
75+
git clone -b kilted https://github.com/ros2/rmw_implementation src/rmw_implementation; \
76+
git clone -b kilted https://github.com/ros2/rcl_logging src/rcl_logging; \
77+
git clone -b kilted https://github.com/ros2/ros2_tracing src/ros2_tracing; \
78+
git clone -b kilted https://github.com/micro-ROS/micro_ros_utilities src/micro_ros_utilities; \
79+
git clone -b kilted https://github.com/ros2/rosidl_core src/rosidl_core; \
8080
touch src/rosidl/rosidl_typesupport_introspection_cpp/COLCON_IGNORE; \
8181
touch src/rclc/rclc_examples/COLCON_IGNORE; \
8282
touch src/rcl/rcl_yaml_param_parser/COLCON_IGNORE; \

0 commit comments

Comments
 (0)