Skip to content

Commit

Permalink
Support Jazzy (#34)
Browse files Browse the repository at this point in the history
* jazzyのCIもindustrial ciで回すようにします

* continue on error

* jazzyでリンクが通るように設定を追加します

* ci全体の結果を想定通りにするようにfail fastにします

* fix ci setting file

* JazzyサポートをREADMEに追記

* add author tag
  • Loading branch information
chama1176 authored Aug 9, 2024
1 parent c101965 commit 01d9425
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/industrial_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ on:
jobs:
industrial_ci:
strategy:
fail-fast: false
matrix:
env:
- { ROS_DISTRO: foxy, ROS_REPO: ros }
- { ROS_DISTRO: galactic, ROS_REPO: ros }
- { ROS_DISTRO: humble, ROS_REPO: ros }
- { ROS_DISTRO: jazzy, ROS_REPO: ros }
- { ROS_DISTRO: rolling, ROS_REPO: ros }
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- ROS Foxy
- ROS Galactic
- ROS Humble
- ROS Jazzy
- ROS Rolling

## インストール方法
Expand Down
4 changes: 4 additions & 0 deletions rt_manipulators_lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ find_package(dynamixel_sdk REQUIRED)
find_package(eigen3_cmake_module REQUIRED)
find_package(Eigen3)
find_package(yaml_cpp_vendor REQUIRED)
find_package(yaml-cpp REQUIRED)

set(library_name ${CMAKE_PROJECT_NAME})

Expand All @@ -37,6 +38,9 @@ target_include_directories(${library_name}
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>)
target_link_libraries(${library_name}
yaml-cpp
)
ament_target_dependencies(${library_name}
dynamixel_sdk
Eigen3
Expand Down
1 change: 1 addition & 0 deletions rt_manipulators_lib/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<license>Apache License 2.0</license>

<author email="[email protected]">ShotaAk</author>
<author email="[email protected]">chama1176</author>

<buildtool_depend>ament_cmake</buildtool_depend>

Expand Down

0 comments on commit 01d9425

Please sign in to comment.