-
Notifications
You must be signed in to change notification settings - Fork 523
Add humble rosdep ci #243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add humble rosdep ci #243
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,6 +49,23 @@ jobs: | |
| with: | ||
| required-ros-distributions: ${{ matrix.ros_distribution }} | ||
|
|
||
| - name: Check and Install ROS dependencies | ||
| shell: bash | ||
| run: | | ||
| set -e | ||
| source /opt/ros/${{ matrix.ros_distribution }}/setup.bash | ||
| echo "--- Updating rosdep definitions ---" | ||
| rosdep update | ||
| echo "--- Installing system dependencies for ROS 2 ${{ matrix.ros_distribution }} ---" | ||
| rosdep install --from-paths ros_ws/src --ignore-src -y -r --rosdistro ${{ matrix.ros_distribution }} | ||
| echo "--- Performing rosdep check for ROS 2 ${{ matrix.ros_distribution }} ---" | ||
| if rosdep check --from-paths ros_ws/src --ignore-src --rosdistro ${{ matrix.ros_distribution }}; then | ||
| echo "--- rosdep check passed ---" | ||
| else | ||
| echo "--- rosdep check failed: Missing system dependencies or unresolvable keys. ---" | ||
| exit 1 | ||
| fi | ||
|
|
||
| - name: Build and Test | ||
| uses: ros-tooling/[email protected] | ||
| with: | ||
|
|
@@ -57,4 +74,5 @@ jobs: | |
| package-name: | | ||
| turtlebot3_fake_node | ||
| turtlebot3_gazebo | ||
| turtlebot3_manipulation_gazebo | ||
| turtlebot3_simulations | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,10 @@ | |
| Changelog for package turtlebot3_gazebo | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
|
||
| 2.3.6 (2025-06-19) | ||
| ------------------ | ||
| * None | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| 2.3.4 (2025-05-28) | ||
| ------------------ | ||
| * None | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,10 @@ | |
| Changelog for package turtlebot3_manipulation_gazebo | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
|
||
| 2.3.6 (2025-06-19) | ||
| ------------------ | ||
| * None | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider adding a more descriptive changelog entry than |
||
|
|
||
| 2.3.4 (2025-05-28) | ||
| ------------------ | ||
| * Moved the TurtleBot3 Manipulation Gazebo simulation from the turtlebot3_manipulation_bringup package | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.