Skip to content

Commit 9e8406f

Browse files
authored
Bump kilted (#49)
Signed-off-by: Antón Casas <antoncasas@eprosima.com>
1 parent 17c4f9b commit 9e8406f

4 files changed

Lines changed: 33 additions & 33 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
nuttx_version: [releases/10.3]
2222
fail-fast: false
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
with:
2626
path: repo
2727
- name: Dependencies

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# micro-ROS app for Nuttx RTOS
55

66

7-
| Humble | Iron | Rolling |
8-
| ------ | ---- | ------- |
9-
| [![Humble](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml/badge.svg?branch=humble&event=schedule)](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml) | [![Iron](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml/badge.svg?branch=iron&event=schedule)](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml) | [![Rolling](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml/badge.svg?branch=rolling&event=schedule)](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml) |
7+
| Humble | Jazzy | Kilted | Rolling |
8+
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
9+
| [![Humble](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml/badge.svg?branch=humble&event=schedule)](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml) | [![Jazzy](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml/badge.svg?branch=jazzy&event=schedule)](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml) | [![Kilted](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml/badge.svg?branch=kilted&event=schedule)](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml) | [![Rolling](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml/badge.svg?branch=rolling&event=schedule)](https://github.com/micro-ROS/micro_ros_nuttx_app/actions/workflows/ci.yml) |
1010

11-
This component has been tested in Nuttx 10.1 and Nuttx 10.3.
11+
This component has been tested in Nuttx 10.3.
1212

1313
## Dependencies
1414

@@ -81,7 +81,7 @@ Is possible to use a micro-ROS Agent just with this docker command:
8181

8282
```bash
8383
# Serial micro-ROS Agent
84-
docker run -it --rm -v /dev:/dev --privileged --net=host microros/micro-ros-agent:rolling serial --dev [YOUR BOARD PORT] -v6
84+
docker run -it --rm -v /dev:/dev --privileged --net=host microros/micro-ros-agent:kilted serial --dev [YOUR BOARD PORT] -v6
8585
```
8686
## Purpose of the Project
8787

micro_ros_lib/Makefile

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ toolchain.cmake: toolchain.cmake.in
4242
micro_ros_dev/install:
4343
rm -rf micro_ros_dev; \
4444
mkdir micro_ros_dev; cd micro_ros_dev; \
45-
git clone -b rolling https://github.com/ament/ament_cmake src/ament_cmake; \
46-
git clone -b rolling https://github.com/ament/ament_lint src/ament_lint; \
47-
git clone -b rolling https://github.com/ament/ament_package src/ament_package; \
48-
git clone -b rolling https://github.com/ament/googletest src/googletest; \
49-
git clone -b rolling https://github.com/ros2/ament_cmake_ros src/ament_cmake_ros; \
50-
git clone -b rolling https://github.com/ament/ament_index src/ament_index; \
45+
git clone -b kilted https://github.com/ament/ament_cmake src/ament_cmake; \
46+
git clone -b kilted https://github.com/ament/ament_lint src/ament_lint; \
47+
git clone -b kilted https://github.com/ament/ament_package src/ament_package; \
48+
git clone -b kilted https://github.com/ament/googletest src/googletest; \
49+
git clone -b kilted https://github.com/ros2/ament_cmake_ros src/ament_cmake_ros; \
50+
git clone -b kilted https://github.com/ament/ament_index src/ament_index; \
5151
touch src/ament_cmake_ros/rmw_test_fixture_implementation/COLCON_IGNORE; \
5252
colcon build --cmake-args -DBUILD_TESTING=OFF;
5353

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

micro_ros_lib/colcon.meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"rcutils": {
1515
"cmake-args": [
1616
"-DENABLE_TESTING=OFF",
17-
"-DRCUTILS_NO_FILESYSTEM=ON",
17+
"-DRCUTILS_NO_FILESYSTEM=OFF",
1818
"-DRCUTILS_NO_THREAD_SUPPORT=ON",
1919
"-DRCUTILS_NO_64_ATOMIC=ON",
2020
"-DRCUTILS_AVOID_DYNAMIC_ALLOCATION=ON"

0 commit comments

Comments
 (0)