Skip to content

Add Kilted Kaiju #317

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/humble-source-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ jobs:
with:
ros_distro: ${{ matrix.ROS_DISTRO }}
ref: humble
ros2_repo_branch: ${{ matrix.ROS_DISTRO }}
os_name: ${{ matrix.OS_NAME }}
container: ${{ matrix.CONTAINER }}
1 change: 0 additions & 1 deletion .github/workflows/jazzy-source-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ jobs:
with:
ros_distro: jazzy
ref: jazzy
ros2_repo_branch: jazzy
os_name: ubuntu-latest
container: ubuntu:24.04
6 changes: 5 additions & 1 deletion .github/workflows/rolling-abi-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,9 @@ concurrency:
jobs:
abi_check:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-abi-check.yml@master
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: rolling
ros_distro: ${{ matrix.ROS_DISTRO }}
2 changes: 1 addition & 1 deletion .github/workflows/rolling-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [rolling]
ROS_DISTRO: [kilted, rolling]
ROS_REPO: [main, testing]
with:
ros_distro: ${{ matrix.ROS_DISTRO }}
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/rolling-binary-downstream-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,14 @@ concurrency:
jobs:
build-downstream:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: rolling
ros_distro: ${{ matrix.ROS_DISTRO }}
ros_repo: testing
ref_for_scheduled_build: master
not_test_build: true
downstream_workspace: ros_controls.rolling.repos
downstream_workspace: ros_controls.${{ matrix.ROS_DISTRO }}.repos
not_test_downstream: true
8 changes: 6 additions & 2 deletions .github/workflows/rolling-debian-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ concurrency:
jobs:
debian_source_build:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-debian-build.yml@master
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: rolling
upstream_workspace: realtime_tools.rolling.repos
ros_distro: ${{ matrix.ROS_DISTRO }}
upstream_workspace: realtime_tools.${{ matrix.ROS_DISTRO }}.repos
ref_for_scheduled_build: master
6 changes: 5 additions & 1 deletion .github/workflows/rolling-pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,9 @@ concurrency:
jobs:
pre-commit:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-pre-commit.yml@master
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: rolling
ros_distro: ${{ matrix.ROS_DISTRO }}
8 changes: 6 additions & 2 deletions .github/workflows/rolling-rhel-semi-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ concurrency:
jobs:
rhel_semi_binary_build:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-rhel-binary-build.yml@master
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: rolling
upstream_workspace: realtime_tools.rolling.repos
ros_distro: ${{ matrix.ROS_DISTRO }}
upstream_workspace: realtime_tools.${{ matrix.ROS_DISTRO }}.repos
ref_for_scheduled_build: master
13 changes: 8 additions & 5 deletions .github/workflows/rolling-semi-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,23 @@ jobs:
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [rolling]
ROS_REPO: [testing]
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: ${{ matrix.ROS_DISTRO }}
ros_repo: ${{ matrix.ROS_REPO }}
ros_repo: testing
ref_for_scheduled_build: master
upstream_workspace: realtime_tools.${{ matrix.ROS_DISTRO }}.repos
binary_clang:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: rolling
ros_distro: ${{ matrix.ROS_DISTRO }}
ros_repo: testing
ref_for_scheduled_build: master
upstream_workspace: realtime_tools.rolling.repos
upstream_workspace: realtime_tools.${{ matrix.ROS_DISTRO }}.repos
additional_debs: clang
c_compiler: clang
cxx_compiler: clang++
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/rolling-source-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ on:
jobs:
source:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-ros-tooling-source-build.yml@master
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: rolling
ros_distro: ${{ matrix.ROS_DISTRO }}
ref: master
ros2_repo_branch: rolling
os_name: ubuntu-latest
container: ubuntu:24.04
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ If you are new to the project, please read the [contributing guide](https://cont
ROS2 Distro | Branch | Build status | Documentation | Package Build
:---------: | :----: | :----------: | :-----------: | :---------------:
**Rolling** | [`master`](https://github.com/ros-controls/realtime_tools/tree/master) | [![Binary Build](https://github.com/ros-controls/realtime_tools/actions/workflows/rolling-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/realtime_tools/actions/workflows/rolling-binary-build.yml?branch=master) <br> [![Source Build](https://github.com/ros-controls/realtime_tools/actions/workflows/rolling-source-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/realtime_tools/actions/workflows/rolling-source-build.yml?branch=master) <br> [![build.ros2.org](https://build.ros2.org/buildStatus/icon?job=Rdev__realtime_tools__ubuntu_noble_amd64&subject=build.ros2.org)](https://build.ros2.org/job/Rdev__realtime_tools__ubuntu_noble_amd64/) | [API](http://docs.ros.org/en/rolling/p/realtime_tools/) | [![Build Status](https://build.ros2.org/buildStatus/icon?job=Rbin_uN64__realtime_tools__ubuntu_noble_amd64__binary)](https://build.ros2.org/job/Rbin_uN64__realtime_tools__ubuntu_noble_amd64__binary/)
**Kilted** | [`master`](https://github.com/ros-controls/realtime_tools/tree/master) | see above <br> [![build.ros2.org](https://build.ros2.org/buildStatus/icon?job=Kdev__realtime_tools__ubuntu_noble_amd64&subject=build.ros2.org)](https://build.ros2.org/job/Kdev__realtime_tools__ubuntu_noble_amd64/) | [API](http://docs.ros.org/en/rolling/p/realtime_tools/) | [![Build Status](https://build.ros2.org/buildStatus/icon?job=Kbin_uN64__realtime_tools__ubuntu_noble_amd64__binary)](https://build.ros2.org/job/Kbin_uN64__realtime_tools__ubuntu_noble_amd64__binary/)
**Jazzy** | [`jazzy`](https://github.com/ros-controls/realtime_tools/tree/jazzy) | [![Binary Build](https://github.com/ros-controls/realtime_tools/actions/workflows/jazzy-binary-build.yml/badge.svg?branch=jazzy)](https://github.com/ros-controls/realtime_tools/actions/workflows/jazzy-binary-build.yml?branch=jazzy) <br> [![Source Build](https://github.com/ros-controls/realtime_tools/actions/workflows/jazzy-source-build.yml/badge.svg?branch=jazzy)](https://github.com/ros-controls/realtime_tools/actions/workflows/jazzy-source-build.yml?branch=jazzy) <br> [![build.ros2.org](https://build.ros2.org/buildStatus/icon?job=Jdev__realtime_tools__ubuntu_noble_amd64&subject=build.ros2.org)](https://build.ros2.org/job/Jdev__realtime_tools__ubuntu_noble_amd64/) | [API](http://docs.ros.org/en/jazzy/p/realtime_tools/) | [![Build Status](https://build.ros2.org/buildStatus/icon?job=Jbin_uN64__realtime_tools__ubuntu_noble_amd64__binary)](https://build.ros2.org/job/Jbin_uN64__realtime_tools__ubuntu_noble_amd64__binary/)
**Humble** | [`humble`](https://github.com/ros-controls/realtime_tools/tree/humble) | [![Binary Build](https://github.com/ros-controls/realtime_tools/actions/workflows/humble-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/realtime_tools/actions/workflows/humble-binary-build.yml?branch=master) <br> [![Source Build](https://github.com/ros-controls/realtime_tools/actions/workflows/humble-source-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/realtime_tools/actions/workflows/humble-source-build.yml?branch=master) <br> [![build.ros2.org](https://build.ros2.org/buildStatus/icon?job=Hdev__realtime_tools__ubuntu_jammy_amd64&subject=build.ros2.org)](https://build.ros2.org/job/Hdev__realtime_tools__ubuntu_jammy_amd64/) | [API](http://docs.ros.org/en/humble/p/realtime_tools/) | [![Build Status](https://build.ros2.org/buildStatus/icon?job=Hbin_uJ64__realtime_tools__ubuntu_jammy_amd64__binary)](https://build.ros2.org/job/Hbin_uJ64__realtime_tools__ubuntu_jammy_amd64__binary/)

Expand Down
5 changes: 5 additions & 0 deletions realtime_tools.kilted.repos
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
repositories:
ros-controls/ros2_control_cmake:
type: git
url: https://github.com/ros-controls/ros2_control_cmake.git
version: master
4 changes: 2 additions & 2 deletions ros_controls.jazzy.repos
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ repositories:
ros-controls/ros2_control:
type: git
url: https://github.com/ros-controls/ros2_control.git
version: master
version: jazzy
ros-controls/ros2_controllers:
type: git
url: https://github.com/ros-controls/ros2_controllers.git
version: master
version: jazzy
21 changes: 21 additions & 0 deletions ros_controls.kilted.repos
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
repositories:
ros-controls/control_msgs:
type: git
url: https://github.com/ros-controls/control_msgs.git
version: master
ros-controls/control_toolbox:
type: git
url: https://github.com/ros-controls/control_toolbox.git
version: ros2-master
ros-controls/kinematics_interface:
type: git
url: https://github.com/ros-controls/kinematics_interface.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
Loading