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

Jazzy support #23

Merged
merged 2 commits into from
Jun 7, 2024
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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ assignees: ''
**Required Information**

- Operating System:
- <!-- OS and version (e.g. Ubuntu 22.04...) -->
- <!-- OS and version (e.g. Ubuntu 24.04...) -->
- ROS distribution
- <!-- ROS 2 (e.g. Humble / Iron / Rolling...) -->
- <!-- ROS 2 (e.g. Humble / Iron / Jazzy / Rolling...) -->
- RMW Implementation
- <!-- RMW (e.g. rmw_fastrtps...) -->
- ROS 2 Persistent Parameter Server Commit ID
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/jazzy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This is workflow for parameter server with jazzy
name: jazzy

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:

# each job goes for each ros supported distribution.
# each job description absorb the distribution dependency as much as possible,
# so that build verification script can be agnostic from distribution dependency.

build:
runs-on: ubuntu-latest
fujitatomoya marked this conversation as resolved.
Show resolved Hide resolved
container:
image: ros:jazzy
env:
ROS_DISTRO: jazzy
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Build with ROS jazzy
shell: bash
run: |
./scripts/build-verification.sh
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![humble](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/humble.yml/badge.svg)](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/humble.yml) [![iron](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/iron.yml/badge.svg)](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/iron.yml) [![rolling](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/rolling.yml/badge.svg)](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/rolling.yml)
[![humble](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/humble.yml/badge.svg)](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/humble.yml) [![iron](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/iron.yml/badge.svg)](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/iron.yml) [![jazzy](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/jazzy.yml/badge.svg)](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/jazzy.yml) [![rolling](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/rolling.yml/badge.svg)](https://github.com/fujitatomoya/ros2_persist_parameter_server/actions/workflows/rolling.yml)

# ROS2 Persistent Parameter Server
<!-- TOC -->
Expand All @@ -18,7 +18,6 @@
- [Build](#build)
- [Run](#run)
- [Test](#test)
- [Build (Deprecated)](#build-deprecated)
- [Run](#run-1)
fujitatomoya marked this conversation as resolved.
Show resolved Hide resolved
- [Known Issues](#known-issues)
- [Authors](#authors)
Expand Down Expand Up @@ -129,6 +128,7 @@ all of the configuration options will be passed via arguments as followings.
### Supported Distribution

- [ROS 2 Rolling Ridley](https://docs.ros.org/en/rolling/index.html)
- [ROS 2 Jazzy Jalisco](https://docs.ros.org/en/jazzy/index.html)
- [ROS 2 Iron Irwini](https://docs.ros.org/en/iron/index.html)
- [ROS 2 Humble Hawksbill](https://docs.ros.org/en/humble/index.html)

Expand Down
Loading