Skip to content

Commit

Permalink
Jazzy support (#23)
Browse files Browse the repository at this point in the history
* add jazzy workflow.

Signed-off-by: Tomoya.Fujita <tomoya.fujita825@gmail.com>

* cosmetic changes for jazzy jalisco.

Signed-off-by: Tomoya.Fujita <tomoya.fujita825@gmail.com>

---------

Signed-off-by: Tomoya.Fujita <tomoya.fujita825@gmail.com>
  • Loading branch information
fujitatomoya committed Jun 7, 2024
1 parent 295d1a0 commit 6b88299
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 4 deletions.
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
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)
- [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

0 comments on commit 6b88299

Please sign in to comment.