Skip to content

Commit 24b0e77

Browse files
Add Kilted Kaiju (#89)
Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
1 parent abc81c3 commit 24b0e77

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
fail-fast: false
7373
matrix:
7474
base_image_name: [ubuntu]
75-
ros_distro: [noetic, humble, jazzy, rolling]
75+
ros_distro: [noetic, humble, jazzy, kilted, rolling]
7676
ros_variant: [desktop, ros-base]
7777
include:
7878

@@ -112,6 +112,18 @@ jobs:
112112
rmw_implementations: ros-jazzy-rmw-fastrtps-cpp,ros-jazzy-rmw-cyclonedds-cpp,ros-jazzy-rmw-connextdds
113113
output_image_tag: ubuntu-noble-ros-jazzy-ros-base
114114

115+
# Kilted Kaiju (May 2025 - December 2026)
116+
- ros_distro: kilted
117+
base_image_tag: noble
118+
ros_variant: desktop
119+
rmw_implementations: ros-kilted-rmw-fastrtps-cpp,ros-kilted-rmw-cyclonedds-cpp,ros-kilted-rmw-connextdds
120+
output_image_tag: ubuntu-noble-ros-kilted-desktop
121+
- ros_distro: kilted
122+
base_image_tag: noble
123+
ros_variant: ros-base
124+
rmw_implementations: ros-kilted-rmw-fastrtps-cpp,ros-kilted-rmw-cyclonedds-cpp,ros-kilted-rmw-connextdds
125+
output_image_tag: ubuntu-noble-ros-kilted-ros-base
126+
115127
# Rolling Ridley (June 2020 - Ongoing)
116128
- ros_distro: rolling
117129
base_image_tag: noble

setup-ros.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,16 @@ curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr
3636
RTI_CONNEXT_DDS=""
3737

3838
if [ -z $ROS_VERSION ]; then
39-
ROS_VERSION='ros2'
39+
ROS_VERSION="ros2"
4040
case ${ROS_DISTRO} in
4141
"noetic")
4242
ROS_VERSION="ros"
4343
;;
44-
*)
44+
"humble" | "jazzy")
4545
RTI_CONNEXT_DDS="rti-connext-dds-6.0.1"
46-
ROS_VERSION="ros2"
46+
;;
47+
*)
48+
RTI_CONNEXT_DDS="rti-connext-dds-7.3.0-ros"
4749
;;
4850
esac
4951
fi

0 commit comments

Comments
 (0)