Skip to content

Commit 84d2206

Browse files
pablogs9Acuadros95
andauthored
Initial humble release (#147)
* Initial humble release Signed-off-by: Pablo Garrido <pablogs9@gmail.com> * Update nightly CI Signed-off-by: Pablo Garrido <pablogs9@gmail.com> * Update docker command Co-authored-by: acuadros95 <acuadros1995@gmail.com>
1 parent 0f662de commit 84d2206

3 files changed

Lines changed: 30 additions & 30 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
branch: [foxy, main, galactic]
17+
branch: [foxy, main, galactic, humble]
1818
idf_target: [ esp32, esp32s2, esp32c3, esp32s3]
1919
idf_version: [ "espressif/idf:release-v4.1", "espressif/idf:release-v4.2", "espressif/idf:release-v4.3", "espressif/idf:release-v4.4" ]
2020
exclude:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Is possible to use a micro-ROS Agent just with this docker command:
5353

5454
```bash
5555
# UDPv4 micro-ROS Agent
56-
docker run -it --rm --net=host microros/micro-ros-agent:foxy udp4 --port 8888 -v6
56+
docker run -it --rm --net=host microros/micro-ros-agent:humble udp4 --port 8888 -v6
5757
```
5858

5959
## Build with docker container
@@ -90,7 +90,7 @@ Is possible to use a micro-ROS Agent just with this docker command:
9090

9191
```bash
9292
# Serial micro-ROS Agent
93-
docker run -it --rm -v /dev:/dev --privileged --net=host microros/micro-ros-agent:foxy serial --dev [YOUR BOARD PORT] -v6
93+
docker run -it --rm -v /dev:/dev --privileged --net=host microros/micro-ros-agent:humble serial --dev [YOUR BOARD PORT] -v6
9494
```
9595

9696
## Purpose of the Project

libmicroros.mk

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -37,42 +37,42 @@ $(EXTENSIONS_DIR)/esp32_toolchain.cmake: $(EXTENSIONS_DIR)/esp32_toolchain.cmake
3737
$(EXTENSIONS_DIR)/micro_ros_dev/install:
3838
rm -rf micro_ros_dev; \
3939
mkdir micro_ros_dev; cd micro_ros_dev; \
40-
git clone -b master https://github.com/ament/ament_cmake src/ament_cmake; \
41-
git clone -b master https://github.com/ament/ament_lint src/ament_lint; \
42-
git clone -b master https://github.com/ament/ament_package src/ament_package; \
43-
git clone -b ros2 https://github.com/ament/googletest src/googletest; \
44-
git clone -b master https://github.com/ros2/ament_cmake_ros src/ament_cmake_ros; \
45-
git clone -b master https://github.com/ament/ament_index src/ament_index; \
40+
git clone -b humble https://github.com/ament/ament_cmake src/ament_cmake; \
41+
git clone -b humble https://github.com/ament/ament_lint src/ament_lint; \
42+
git clone -b humble https://github.com/ament/ament_package src/ament_package; \
43+
git clone -b humble https://github.com/ament/googletest src/googletest; \
44+
git clone -b humble https://github.com/ros2/ament_cmake_ros src/ament_cmake_ros; \
45+
git clone -b humble https://github.com/ament/ament_index src/ament_index; \
4646
colcon build --cmake-args -DBUILD_TESTING=OFF -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=gcc;
4747

4848
$(EXTENSIONS_DIR)/micro_ros_src/src:
4949
rm -rf micro_ros_src; \
5050
mkdir micro_ros_src; cd micro_ros_src; \
5151
if [ "$(MIDDLEWARE)" = "embeddedrtps" ]; then \
52-
git clone -b main https://github.com/micro-ROS/embeddedRTPS src/embeddedRTPS; \
53-
git clone -b main https://github.com/micro-ROS/rmw_embeddedrtps src/rmw_embeddedrtps; \
52+
git clone -b humble https://github.com/micro-ROS/embeddedRTPS src/embeddedRTPS; \
53+
git clone -b humble https://github.com/micro-ROS/rmw_embeddedrtps src/rmw_embeddedrtps; \
5454
else \
5555
git clone -b ros2 https://github.com/eProsima/Micro-XRCE-DDS-Client src/Micro-XRCE-DDS-Client; \
56-
git clone -b main https://github.com/micro-ROS/rmw_microxrcedds src/rmw_microxrcedds; \
56+
git clone -b humble https://github.com/micro-ROS/rmw_microxrcedds src/rmw_microxrcedds; \
5757
fi; \
58-
git clone -b foxy https://github.com/eProsima/micro-CDR src/micro-CDR; \
59-
git clone -b master https://github.com/micro-ROS/rcl src/rcl; \
60-
git clone -b master https://github.com/ros2/rclc src/rclc; \
61-
git clone -b master https://github.com/micro-ROS/rcutils src/rcutils; \
62-
git clone -b main https://github.com/micro-ROS/micro_ros_msgs src/micro_ros_msgs; \
63-
git clone -b master https://github.com/micro-ROS/rosidl_typesupport src/rosidl_typesupport; \
64-
git clone -b main https://github.com/micro-ROS/rosidl_typesupport_microxrcedds src/rosidl_typesupport_microxrcedds; \
65-
git clone -b master https://github.com/ros2/rosidl src/rosidl; \
66-
git clone -b master https://github.com/ros2/rmw src/rmw; \
67-
git clone -b master https://github.com/ros2/rcl_interfaces src/rcl_interfaces; \
68-
git clone -b master https://github.com/ros2/rosidl_defaults src/rosidl_defaults; \
69-
git clone -b master https://github.com/ros2/unique_identifier_msgs src/unique_identifier_msgs; \
70-
git clone -b master https://github.com/ros2/common_interfaces src/common_interfaces; \
71-
git clone -b master https://github.com/ros2/test_interface_files src/test_interface_files; \
72-
git clone -b master https://github.com/ros2/rmw_implementation src/rmw_implementation; \
73-
git clone -b master https://github.com/ros2/rcl_logging src/rcl_logging; \
74-
git clone -b master https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing src/ros2_tracing; \
75-
git clone -b main https://github.com/micro-ROS/micro_ros_utilities src/micro_ros_utilities; \
58+
git clone -b ros2 https://github.com/eProsima/micro-CDR src/micro-CDR; \
59+
git clone -b humble https://github.com/micro-ROS/rcl src/rcl; \
60+
git clone -b humble https://github.com/ros2/rclc src/rclc; \
61+
git clone -b humble https://github.com/micro-ROS/rcutils src/rcutils; \
62+
git clone -b humble https://github.com/micro-ROS/micro_ros_msgs src/micro_ros_msgs; \
63+
git clone -b humble https://github.com/micro-ROS/rosidl_typesupport src/rosidl_typesupport; \
64+
git clone -b humble https://github.com/micro-ROS/rosidl_typesupport_microxrcedds src/rosidl_typesupport_microxrcedds; \
65+
git clone -b humble https://github.com/ros2/rosidl src/rosidl; \
66+
git clone -b humble https://github.com/ros2/rmw src/rmw; \
67+
git clone -b humble https://github.com/ros2/rcl_interfaces src/rcl_interfaces; \
68+
git clone -b humble https://github.com/ros2/rosidl_defaults src/rosidl_defaults; \
69+
git clone -b humble https://github.com/ros2/unique_identifier_msgs src/unique_identifier_msgs; \
70+
git clone -b humble https://github.com/ros2/common_interfaces src/common_interfaces; \
71+
git clone -b humble https://github.com/ros2/test_interface_files src/test_interface_files; \
72+
git clone -b humble https://github.com/ros2/rmw_implementation src/rmw_implementation; \
73+
git clone -b humble https://github.com/ros2/rcl_logging src/rcl_logging; \
74+
git clone -b humble https://gitlab.com/ros-tracing/ros2_tracing src/ros2_tracing; \
75+
git clone -b humble https://github.com/micro-ROS/micro_ros_utilities src/micro_ros_utilities; \
7676
touch src/rosidl/rosidl_typesupport_introspection_cpp/COLCON_IGNORE; \
7777
touch src/rcl_logging/rcl_logging_log4cxx/COLCON_IGNORE; \
7878
touch src/rcl_logging/rcl_logging_spdlog/COLCON_IGNORE; \

0 commit comments

Comments
 (0)