Skip to content

Commit 01d9425

Browse files
authored
Support Jazzy (#34)
* jazzyのCIもindustrial ciで回すようにします * continue on error * jazzyでリンクが通るように設定を追加します * ci全体の結果を想定通りにするようにfail fastにします * fix ci setting file * JazzyサポートをREADMEに追記 * add author tag
1 parent c101965 commit 01d9425

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/industrial_ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ on:
1515
jobs:
1616
industrial_ci:
1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
env:
2021
- { ROS_DISTRO: foxy, ROS_REPO: ros }
2122
- { ROS_DISTRO: galactic, ROS_REPO: ros }
2223
- { ROS_DISTRO: humble, ROS_REPO: ros }
24+
- { ROS_DISTRO: jazzy, ROS_REPO: ros }
2325
- { ROS_DISTRO: rolling, ROS_REPO: ros }
2426
runs-on: ubuntu-latest
2527
steps:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
- ROS Foxy
1717
- ROS Galactic
1818
- ROS Humble
19+
- ROS Jazzy
1920
- ROS Rolling
2021

2122
## インストール方法

rt_manipulators_lib/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ find_package(dynamixel_sdk REQUIRED)
1313
find_package(eigen3_cmake_module REQUIRED)
1414
find_package(Eigen3)
1515
find_package(yaml_cpp_vendor REQUIRED)
16+
find_package(yaml-cpp REQUIRED)
1617

1718
set(library_name ${CMAKE_PROJECT_NAME})
1819

@@ -37,6 +38,9 @@ target_include_directories(${library_name}
3738
PUBLIC
3839
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
3940
$<INSTALL_INTERFACE:include>)
41+
target_link_libraries(${library_name}
42+
yaml-cpp
43+
)
4044
ament_target_dependencies(${library_name}
4145
dynamixel_sdk
4246
Eigen3

rt_manipulators_lib/package.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<license>Apache License 2.0</license>
99

1010
<author email="s.aoki@rt-net.jp">ShotaAk</author>
11+
<author email="yakushigawa@rt-net.jp">chama1176</author>
1112

1213
<buildtool_depend>ament_cmake</buildtool_depend>
1314

0 commit comments

Comments
 (0)