File tree Expand file tree Collapse file tree 9 files changed +42
-6
lines changed
turtlebot3_manipulation_gazebo Expand file tree Collapse file tree 9 files changed +42
-6
lines changed Original file line number Diff line number Diff line change 49
49
with :
50
50
required-ros-distributions : ${{ matrix.ros_distribution }}
51
51
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
+
52
69
- name : Build and Test
53
70
uses :
ros-tooling/[email protected]
54
71
with :
57
74
package-name : |
58
75
turtlebot3_fake_node
59
76
turtlebot3_gazebo
77
+ turtlebot3_manipulation_gazebo
60
78
turtlebot3_simulations
Original file line number Diff line number Diff line change 2
2
Changelog for package turtlebot3_fake
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.3.6 (2025-06-19)
6
+ ------------------
7
+ * None
8
+
5
9
2.3.4 (2025-05-28)
6
10
------------------
7
11
* None
@@ -10,7 +14,7 @@ Changelog for package turtlebot3_fake
10
14
------------------
11
15
* None
12
16
13
- 2.2.6 (2202 -05-26)
17
+ 2.2.6 (2022 -05-26)
14
18
------------------
15
19
* ROS 2 Humble Hawksbill supported
16
20
* Contributors: Will Son
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >turtlebot3_fake_node</name >
5
- <version >2.3.4 </version >
5
+ <version >2.3.6 </version >
6
6
<description >
7
7
Package for TurtleBot3 fake node. With this package, simple tests can be done without a robot.
8
8
You can do simple tests using this package on rviz without real robots.
Original file line number Diff line number Diff line change 2
2
Changelog for package turtlebot3_gazebo
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.3.6 (2025-06-19)
6
+ ------------------
7
+ * None
8
+
5
9
2.3.4 (2025-05-28)
6
10
------------------
7
11
* None
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >turtlebot3_gazebo</name >
5
- <version >2.3.4 </version >
5
+ <version >2.3.6 </version >
6
6
<description >
7
7
Gazebo simulation package for the TurtleBot3
8
8
</description >
Original file line number Diff line number Diff line change 2
2
Changelog for package turtlebot3_manipulation_gazebo
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.3.6 (2025-06-19)
6
+ ------------------
7
+ * None
8
+
5
9
2.3.4 (2025-05-28)
6
10
------------------
7
11
* Moved the TurtleBot3 Manipulation Gazebo simulation from the turtlebot3_manipulation_bringup package
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >turtlebot3_manipulation_gazebo</name >
5
- <version >2.3.4 </version >
5
+ <version >2.3.6 </version >
6
6
<description >
7
7
Gazebo simulation package for the TurtleBot3 manipulation
8
8
</description >
Original file line number Diff line number Diff line change 2
2
Changelog for package turtlebot3_simulations
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.3.6 (2025-06-19)
6
+ ------------------
7
+ * Included the TurtleBot3 Manipulation Gazebo simulation package in the metapackage's package.xml and updated the CI configuration accordingly
8
+ * Contributors: Hyungyu Kim
9
+
5
10
2.3.4 (2025-05-28)
6
11
------------------
7
12
* Moved the TurtleBot3 Manipulation Gazebo simulation from the turtlebot3_manipulation_bringup package
@@ -15,7 +20,7 @@ Changelog for package turtlebot3_simulations
15
20
* Updated robot mesh in Gazebo and RViz
16
21
* Contributors: Hyungyu Kim
17
22
18
- 2.2.6 (2202 -05-26)
23
+ 2.2.6 (2022 -05-26)
19
24
------------------
20
25
* ROS 2 Humble Hawksbill supported
21
26
* Contributors: Will Son
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >turtlebot3_simulations</name >
5
- <version >2.3.4 </version >
5
+ <version >2.3.6 </version >
6
6
<description >
7
7
ROS 2 packages for TurtleBot3 simulations
8
8
</description >
18
18
<buildtool_depend >ament_cmake</buildtool_depend >
19
19
<exec_depend >turtlebot3_fake_node</exec_depend >
20
20
<exec_depend >turtlebot3_gazebo</exec_depend >
21
+ <exec_depend >turtlebot3_manipulation_gazebo</exec_depend >
21
22
<export >
22
23
<build_type >ament_cmake</build_type >
23
24
</export >
You can’t perform that action at this time.
0 commit comments