Skip to content

Commit 4385328

Browse files
committed
Update CI for Humble
1 parent c0f1fb4 commit 4385328

File tree

7 files changed

+45
-51
lines changed

7 files changed

+45
-51
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Humble Binary Main
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches:
6+
- humble
7+
push:
8+
branches:
9+
- humble
10+
11+
jobs:
12+
humble_binary_main:
13+
uses: ./.github/workflows/reusable_ici.yml
14+
with:
15+
ros_distro: humble
16+
ros_repo: main
17+
ref_for_scheduled_build: humble
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Humble Binary Testing
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches:
6+
- humble
7+
push:
8+
branches:
9+
- humble
10+
11+
jobs:
12+
humble_binary_testing:
13+
uses: ./.github/workflows/reusable_ici.yml
14+
with:
15+
ros_distro: humble
16+
ros_repo: testing
17+
ref_for_scheduled_build: humble

.github/workflows/rolling-binary-main.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/rolling-binary-testing.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/sphinx.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
name: "Pull Request Docs Check"
33
on:
44
pull_request:
5+
branches:
6+
- humble
57
push:
68
branches:
7-
- main
9+
- humble
810

911
jobs:
1012
docs:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ This package contains tutorials around the ROS 2 packages for Universal Robots.
33

44
## Getting started
55
To use the tutorials from this repository, please make sure to [install ROS
6-
2](https://docs.ros.org/en/rolling/Installation.html) on your system. Currently, only ROS Jazzy and
7-
Rolling are supported.
6+
2](https://docs.ros.org/en/humble/Installation.html) on your system. This branch is for ROS Humble
7+
only.
88

99
With that, please create a workspace, clone this repo into the workspace, install the dependencies
1010
and build the workspace.
@@ -18,7 +18,7 @@ and build the workspace.
1818
1. Download the required repositories and install package dependencies:
1919
```
2020
cd $COLCON_WS
21-
git clone https://github.com/UniversalRobots/Universal_Robots_ROS2_Tutorials.git src/ur_tutorials
21+
git clone -b humble https://github.com/UniversalRobots/Universal_Robots_ROS2_Tutorials.git src/ur_tutorials
2222
rosdep update && rosdep install --ignore-src --from-paths src -y
2323
```
2424

@@ -36,5 +36,5 @@ and build the workspace.
3636
1. Launch an example
3737
e.g. the custom workcell example
3838
```
39-
ros2 launch my_robot_cell_control start_robot.launch.py use_mock_hardware:=true
39+
ros2 launch my_robot_cell_control start_robot.launch.py use_fake_hardware:=true
4040
```

conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
master_doc = "tutorial_index"
5858
numfig = True
5959

60-
ros_distro = "rolling"
61-
distro_title = "Rolling"
62-
distro_title_full = "Rolling Ridley"
63-
repos_file_branch = "main"
60+
ros_distro = "humble"
61+
distro_title = "Humble"
62+
distro_title_full = "Humble Hawksbill"
63+
repos_file_branch = "humble"
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

0 commit comments

Comments
 (0)