-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since the iron branch is now the default branch, we need to run scheduled builds off that.
- Loading branch information
Showing
6 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
pull_request_rules: | ||
- name: Backport to humble branch | ||
conditions: | ||
- base=iron | ||
- label=backport-humble | ||
actions: | ||
backport: | ||
branches: | ||
- humble | ||
labels: | ||
- humble |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Humble Binary Main | ||
on: | ||
workflow_dispatch: | ||
branches: | ||
- humble | ||
pull_request: | ||
branches: | ||
- humble | ||
push: | ||
branches: | ||
- humble | ||
schedule: | ||
- cron: '13 4 * * *' | ||
|
||
jobs: | ||
binary: | ||
uses: ./.github/workflows/reusable_ici.yml | ||
with: | ||
ros_distro: humble | ||
ros_repo: main | ||
ref_for_scheduled_build: humble |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Humble Binary Testing | ||
on: | ||
workflow_dispatch: | ||
branches: | ||
- humble | ||
pull_request: | ||
branches: | ||
- humble | ||
push: | ||
branches: | ||
- humble | ||
schedule: | ||
- cron: '13 4 * * *' | ||
|
||
jobs: | ||
binary: | ||
uses: ./.github/workflows/reusable_ici.yml | ||
with: | ||
ros_distro: humble | ||
ros_repo: testing | ||
ref_for_scheduled_build: humble |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Humble Semi Binary Main | ||
on: | ||
workflow_dispatch: | ||
branches: | ||
- humble | ||
pull_request: | ||
branches: | ||
- humble | ||
push: | ||
branches: | ||
- humble | ||
schedule: | ||
- cron: '13 4 * * *' | ||
|
||
jobs: | ||
binary: | ||
uses: ./.github/workflows/reusable_ici.yml | ||
with: | ||
ros_distro: humble | ||
ros_repo: main | ||
ref_for_scheduled_build: humble | ||
upstream_workspace: Universal_Robots_ROS2_Gazebo_Simulation.humble.repos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Humble Semi Binary Testing | ||
on: | ||
workflow_dispatch: | ||
branches: | ||
- humble | ||
pull_request: | ||
branches: | ||
- humble | ||
push: | ||
branches: | ||
- humble | ||
schedule: | ||
- cron: '13 4 * * *' | ||
|
||
jobs: | ||
binary: | ||
uses: ./.github/workflows/reusable_ici.yml | ||
with: | ||
ros_distro: humble | ||
ros_repo: testing | ||
ref_for_scheduled_build: humble | ||
upstream_workspace: Universal_Robots_ROS2_Gazebo_Simulation.humble.repos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
repositories: | ||
ur_description: | ||
type: git | ||
url: https://github.com/UniversalRobots/Universal_Robots_ROS2_Description | ||
version: humble | ||
|
||
gazebo_ros2_control: | ||
type: git | ||
url: https://github.com/ros-simulation/gazebo_ros2_control.git | ||
version: humble | ||
|
||
moveit2: | ||
type: git | ||
url: https://github.com/ros-planning/moveit2.git | ||
version: humble | ||
|
||
moveit_msgs: | ||
type: git | ||
url: https://github.com/ros-planning/moveit_msgs.git | ||
version: humble | ||
|
||
ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_control.git | ||
version: humble | ||
|
||
ros2_controllers: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_controllers.git | ||
version: humble |