-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Test: Add rolling build * Added workflows for all three distros * Do not specify branches for local workflow files
- Loading branch information
Showing
6 changed files
with
180 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,23 @@ | ||
name: Humble Binary Build - main | ||
# author: Denis Štogl <[email protected]> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run every morning to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
jobs: | ||
binary: | ||
uses: ./.github/workflows/reusable-industrial-ci-with-cache.yml | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ROS_DISTRO: [humble] | ||
ROS_REPO: [main, testing] | ||
with: | ||
ros_distro: ${{ matrix.ROS_DISTRO }} | ||
ros_repo: ${{ matrix.ROS_REPO }} | ||
target_workspace: ros_controls.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master |
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,23 @@ | ||
name: Iron Binary Build - main | ||
# author: Denis Štogl <[email protected]> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run every morning to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
jobs: | ||
binary: | ||
uses: ./.github/workflows/reusable-industrial-ci-with-cache.yml | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ROS_DISTRO: [iron] | ||
ROS_REPO: [main, testing] | ||
with: | ||
ros_distro: ${{ matrix.ROS_DISTRO }} | ||
ros_repo: ${{ matrix.ROS_REPO }} | ||
target_workspace: ros_controls.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master |
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,23 @@ | ||
name: Rolling Binary Build - main | ||
# author: Denis Štogl <[email protected]> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run every morning to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
jobs: | ||
binary: | ||
uses: ./.github/workflows/reusable-industrial-ci-with-cache.yml | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ROS_DISTRO: [rolling] | ||
ROS_REPO: [main, testing] | ||
with: | ||
ros_distro: ${{ matrix.ROS_DISTRO }} | ||
ros_repo: ${{ matrix.ROS_REPO }} | ||
target_workspace: ros_controls.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master |
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,37 @@ | ||
repositories: | ||
ros-controls/realtime_tools: | ||
type: git | ||
url: https://github.com/ros-controls/realtime_tools.git | ||
version: master | ||
ros-controls/control_msgs: | ||
type: git | ||
url: https://github.com/ros-controls/control_msgs.git | ||
version: humble | ||
ros-controls/ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_control.git | ||
version: humble | ||
ros-controls/ros2_controllers: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_controllers.git | ||
version: humble | ||
ros-controls/kinematics_interface: | ||
type: git | ||
url: https://github.com/ros-controls/kinematics_interface.git | ||
version: master | ||
ros-controls/gz_ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/gz_ros2_control.git | ||
version: humble | ||
ros-controls/gazebo_ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/gazebo_ros2_control.git | ||
version: humble | ||
ros-controls/ros2_control_demos: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_control_demos.git | ||
version: humble | ||
ros-controls/control_toolbox: | ||
type: git | ||
url: https://github.com/ros-controls/control_toolbox.git | ||
version: ros2-master |
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,37 @@ | ||
repositories: | ||
ros-controls/realtime_tools: | ||
type: git | ||
url: https://github.com/ros-controls/realtime_tools.git | ||
version: master | ||
ros-controls/control_msgs: | ||
type: git | ||
url: https://github.com/ros-controls/control_msgs.git | ||
version: master | ||
ros-controls/ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_control.git | ||
version: iron | ||
ros-controls/ros2_controllers: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_controllers.git | ||
version: iron | ||
ros-controls/kinematics_interface: | ||
type: git | ||
url: https://github.com/ros-controls/kinematics_interface.git | ||
version: master | ||
ros-controls/gz_ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/gz_ros2_control.git | ||
version: iron | ||
ros-controls/gazebo_ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/gazebo_ros2_control.git | ||
version: iron | ||
ros-controls/ros2_control_demos: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_control_demos.git | ||
version: iron | ||
ros-controls/control_toolbox: | ||
type: git | ||
url: https://github.com/ros-controls/control_toolbox.git | ||
version: ros2-master |
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,37 @@ | ||
repositories: | ||
ros-controls/realtime_tools: | ||
type: git | ||
url: https://github.com/ros-controls/realtime_tools.git | ||
version: master | ||
ros-controls/control_msgs: | ||
type: git | ||
url: https://github.com/ros-controls/control_msgs.git | ||
version: master | ||
ros-controls/ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_control.git | ||
version: master | ||
ros-controls/ros2_controllers: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_controllers.git | ||
version: master | ||
ros-controls/kinematics_interface: | ||
type: git | ||
url: https://github.com/ros-controls/kinematics_interface.git | ||
version: master | ||
ros-controls/gz_ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/gz_ros2_control.git | ||
version: master | ||
ros-controls/gazebo_ros2_control: | ||
type: git | ||
url: https://github.com/ros-controls/gazebo_ros2_control.git | ||
version: master | ||
ros-controls/ros2_control_demos: | ||
type: git | ||
url: https://github.com/ros-controls/ros2_control_demos.git | ||
version: master | ||
ros-controls/control_toolbox: | ||
type: git | ||
url: https://github.com/ros-controls/control_toolbox.git | ||
version: ros2-master |