Modified the CI option for ROS 2 jazzy and rolling

Signed-off-by: Pyo <pyo@robotis.com>
This commit is contained in:
Pyo 2025-02-20 20:26:45 +09:00
parent caf16d8786
commit 0eb5c4b3c3
No known key found for this signature in database
GPG Key ID: 3B071F0B79A9C8B5

View File

@ -4,9 +4,9 @@ name: CI
# Specifies the events that trigger the workflow
on:
push:
branches: [ main, humble ]
branches: [ main, humble, jazzy]
pull_request:
branches: [ main, humble ]
branches: [ main, humble, jazzy]
# Defines a set of jobs to be run as part of the workflow
jobs:
@ -18,21 +18,21 @@ jobs:
matrix:
ros_distribution:
- humble
# - jazzy
# - rolling
- jazzy
- rolling
include:
# ROS 2 Humble Hawksbill
- docker_image: ubuntu:jammy
ros_distribution: humble
ros_version: 2
# ROS 2 Jazzy Jalisco
# - docker_image: ubuntu:noble
# ros_distribution: jazzy
# ros_version: 2
- docker_image: ubuntu:noble
ros_distribution: jazzy
ros_version: 2
# ROS 2 Rolling Ridley
# - docker_image: ubuntu:noble
# ros_distribution: rolling
# ros_version: 2
- docker_image: ubuntu:noble
ros_distribution: rolling
ros_version: 2
container:
image: ${{ matrix.docker_image }}
steps: