File tree Expand file tree Collapse file tree 9 files changed +38
-6
lines changed
include/turtlebot3_fake_node
include/turtlebot3_gazebo Expand file tree Collapse file tree 9 files changed +38
-6
lines changed Original file line number Diff line number Diff line change 4949 with :
5050 required-ros-distributions : ${{ matrix.ros_distribution }}
5151
52+ - name : Check and Install ROS dependencies
53+ shell : bash
54+ run : |
55+ set -e
56+ source /opt/ros/${{ matrix.ros_distribution }}/setup.bash
57+ echo "--- Updating rosdep definitions ---"
58+ rosdep update
59+ echo "--- Installing system dependencies for ROS 2 ${{ matrix.ros_distribution }} ---"
60+ rosdep install --from-paths ros_ws/src --ignore-src -y -r --rosdistro ${{ matrix.ros_distribution }}
61+ echo "--- Performing rosdep check for ROS 2 ${{ matrix.ros_distribution }} ---"
62+ if rosdep check --from-paths ros_ws/src --ignore-src --rosdistro ${{ matrix.ros_distribution }}; then
63+ echo "--- rosdep check passed ---"
64+ else
65+ echo "--- rosdep check failed: Missing system dependencies or unresolvable keys. ---"
66+ exit 1
67+ fi
68+
5269 - name : Build and Test
5370 uses :
ros-tooling/[email protected] 5471 with :
Original file line number Diff line number Diff line change 22Changelog for package turtlebot3_fake
33^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44
5+ 2.3.7 (2025-06-27)
6+ ------------------
7+ * Changed the header files in tf2/LinearMath from .h to .hpp
8+ * Contributors: Hyungyu Kim
9+
5102.3.5 (2025-06-04)
611------------------
712* None
Original file line number Diff line number Diff line change 1717#ifndef TURTLEBOT3_FAKE_NODE__TURTLEBOT3_FAKE_NODE_HPP_
1818#define TURTLEBOT3_FAKE_NODE__TURTLEBOT3_FAKE_NODE_HPP_
1919
20- #include < tf2/LinearMath/Quaternion.h>
2120#include < chrono>
2221
2322#include < rclcpp/rclcpp.hpp>
2423#include " geometry_msgs/msg/transform_stamped.hpp"
2524#include " geometry_msgs/msg/twist.hpp"
2625#include " nav_msgs/msg/odometry.hpp"
2726#include " sensor_msgs/msg/joint_state.hpp"
27+ #include < tf2/LinearMath/Quaternion.hpp>
2828#include " tf2_msgs/msg/tf_message.hpp"
2929#include " turtlebot3_msgs/msg/sensor_state.hpp"
3030
Original file line number Diff line number Diff line change 22<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
33<package format =" 3" >
44 <name >turtlebot3_fake_node</name >
5- <version >2.3.5 </version >
5+ <version >2.3.7 </version >
66 <description >
77 Package for TurtleBot3 fake node. With this package, simple tests can be done without a robot.
88 You can do simple tests using this package on rviz without real robots.
Original file line number Diff line number Diff line change 22Changelog for package turtlebot3_gazebo
33^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44
5+ 2.3.7 (2025-06-27)
6+ ------------------
7+ * Changed the header files in tf2/LinearMath from .h to .hpp
8+ * Contributors: Hyungyu Kim
9+
5102.3.5 (2025-06-04)
611------------------
712* Added turtlebot3_machine_learning world and plugin
Original file line number Diff line number Diff line change 1717#ifndef TURTLEBOT3_GAZEBO__TURTLEBOT3_DRIVE_HPP_
1818#define TURTLEBOT3_GAZEBO__TURTLEBOT3_DRIVE_HPP_
1919
20- #include < tf2/LinearMath/Matrix3x3.h>
21- #include < tf2/LinearMath/Quaternion.h>
2220#include < geometry_msgs/msg/twist.hpp>
2321#include < nav_msgs/msg/odometry.hpp>
2422#include < rclcpp/rclcpp.hpp>
2523#include < sensor_msgs/msg/laser_scan.hpp>
24+ #include < tf2/LinearMath/Matrix3x3.hpp>
25+ #include < tf2/LinearMath/Quaternion.hpp>
2626
2727#define DEG2RAD (M_PI / 180.0 )
2828#define RAD2DEG (180.0 / M_PI)
Original file line number Diff line number Diff line change 22<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
33<package format =" 3" >
44 <name >turtlebot3_gazebo</name >
5- <version >2.3.5 </version >
5+ <version >2.3.7 </version >
66 <description >
77 Gazebo simulation package for the TurtleBot3
88 </description >
Original file line number Diff line number Diff line change 22Changelog for package turtlebot3_simulations
33^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44
5+ 2.3.7 (2025-06-27)
6+ ------------------
7+ * Changed the header files in tf2/LinearMath from .h to .hpp
8+ * Contributors: Hyungyu Kim
9+
5102.3.5 (2025-06-04)
611------------------
712* Added turtlebot3_machine_learning world and plugin
Original file line number Diff line number Diff line change 22<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
33<package format =" 3" >
44 <name >turtlebot3_simulations</name >
5- <version >2.3.5 </version >
5+ <version >2.3.7 </version >
66 <description >
77 ROS 2 packages for TurtleBot3 simulations
88 </description >
You can’t perform that action at this time.
0 commit comments