Skip to content
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

Add jazzy distro #247

Merged
merged 2 commits into from
Jan 8, 2025
Merged
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
2 changes: 1 addition & 1 deletion rtwcli/rtw_cmds/rtw_cmds/workspace/create_verb.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def add_arguments(self, parser: argparse.ArgumentParser, cli_name: str):
type=str,
help="ROS distro to use for the workspace.",
required=True,
choices=["humble", "rolling"],
choices=["humble", "jazzy", "rolling"],
)
parser.add_argument(
"--docker", action="store_true", help="Create a docker workspace.", default=False
Expand Down
5 changes: 4 additions & 1 deletion scripts/_RosTeamWs_Defines.bash
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fi

# All the possible supported ros distributions supported by rtw
if [ -z "$rtw_supported_ros_distributions" ]; then
readonly rtw_supported_ros_distributions=("noetic" "foxy" "galactic" "humble" "iron" "rolling")
readonly rtw_supported_ros_distributions=("noetic" "foxy" "galactic" "humble" "iron" "jazzy" "rolling")
fi

# Mapping of ubuntu version and supported ros distributions
Expand Down Expand Up @@ -534,6 +534,9 @@ function set_ros_version_for_distro {
iron)
ros_version=2
;;
jazzy)
ros_version=2
;;
rolling)
ros_version=2
;;
Expand Down
Loading