forked from ElettraSciComp/witmotion_IMU_ros
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ElettraSciComp:ros2' into ros2
- Loading branch information
Showing
5 changed files
with
165 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: ROS2 CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'develop' | ||
- 'ros2' | ||
push: | ||
branches: | ||
- 'ros2' | ||
|
||
jobs: | ||
test_environment: | ||
runs-on: [ubuntu-latest] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ros_distribution: | ||
- humble | ||
- iron | ||
- rolling | ||
include: | ||
# Humble Hawksbill (May 2022 - May 2027) | ||
- docker_image: rostooling/setup-ros-docker:ubuntu-jammy-ros-humble-ros-base-latest | ||
ros_distribution: humble | ||
ros_version: 2 | ||
# Iron Irwini (May 2023 - May 2028) | ||
- docker_image: rostooling/setup-ros-docker:ubuntu-jammy-ros-rolling-ros-base-latest | ||
ros_distribution: iron | ||
ros_version: 2 | ||
# Rolling Ridley (June 2020 - Present) | ||
- docker_image: rostooling/setup-ros-docker:ubuntu-jammy-ros-rolling-ros-base-latest | ||
ros_distribution: rolling | ||
ros_version: 2 | ||
container: | ||
image: ${{ matrix.docker_image }} | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: install deps | ||
run: sudo apt-get -y install qtbase5-dev libqt5serialport5-dev | ||
- name: build and test | ||
uses: ros-tooling/action-ros-ci@master | ||
with: | ||
target-ros2-distro: ${{ matrix.ros_distribution }} | ||
vcs-repo-file-url: "" | ||
skip-tests: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,34 +3,25 @@ | |
<package format="3"> | ||
<name>witmotion_ros</name> | ||
<version>0.0.0</version> | ||
<description>TODO: Package description</description> | ||
<description>Witmotion IMU sensor driver for ROS</description> | ||
<maintainer email="[email protected]">pi</maintainer> | ||
<license>TODO: License declaration</license> | ||
<license>MIT</license> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<build_depend>rclcpp</build_depend> | ||
<build_depend>sensor_msgs</build_depend> | ||
<build_depend>geometry_msgs</build_depend> | ||
<build_depend>message_runtime</build_depend> | ||
<build_depend>std_msgs</build_depend> | ||
<build_depend>std_srvs</build_depend> | ||
<build_depend>nav_core</build_depend> | ||
<build_depend>nav_msgs</build_depend> | ||
<build_depend>tf2</build_depend> | ||
<build_depend>tf2_geometry_msgs</build_depend> | ||
<build_depend>rosgraph_msgs</build_depend> | ||
<exec_depend>rclcpp</exec_depend> | ||
<exec_depend>sensor_msgs</exec_depend> | ||
<exec_depend>geometry_msgs</exec_depend> | ||
<exec_depend>message_runtime</exec_depend> | ||
<exec_depend>std_msgs</exec_depend> | ||
<exec_depend>std_srvs</exec_depend> | ||
<exec_depend>nav_core</exec_depend> | ||
<exec_depend>nav_msgs</exec_depend> | ||
<exec_depend>rosgraph_msgs</exec_depend> | ||
<exec_depend>tf2</exec_depend> | ||
<exec_depend>tf2_geometry_msgs</exec_depend> | ||
<exec_depend>libqt5-serialport-dev</exec_depend> | ||
<buildtool_depend>ament_cmake_auto</buildtool_depend> | ||
|
||
<depend>tf2_geometry_msgs</depend> | ||
<depend>rclcpp</depend> | ||
<depend>std_srvs</depend> | ||
<depend>rcl_interfaces</depend> | ||
<depend>rclcpp_lifecycle</depend> | ||
<depend>lifecycle_msgs</depend> | ||
<depend>qtbase5-dev</depend> | ||
<depend>libqt5-serialport</depend> | ||
<depend>boost</depend> | ||
<depend>nav_msgs</depend> | ||
<depend>std_msgs</depend> | ||
<depend>tf2</depend> | ||
|
||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_depend> | ||
|
Oops, something went wrong.