-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial cleanup * Add rolling to build * Fix styling * Update READMEs * Bump version * Update README.md * Wipe out last ROS 1 traces --------- Co-authored-by: Benedikt Mersch <[email protected]>
- Loading branch information
1 parent
c10f9d4
commit c6224a1
Showing
20 changed files
with
51 additions
and
981 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 |
---|---|---|
|
@@ -7,31 +7,11 @@ on: | |
branches: ["main"] | ||
|
||
jobs: | ||
ros1_node: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
release: [noetic] | ||
container: osrf/ros:${{ matrix.release }}-desktop-full | ||
steps: | ||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: "3.25.x" | ||
- name: Prepare catkin_ws | ||
run: mkdir -p catkin_ws/src | ||
- uses: actions/checkout@v3 | ||
with: | ||
path: catkin_ws/src | ||
- name: Run catkin_make | ||
run: source /opt/ros/${{ matrix.release }}/setup.bash && cd catkin_ws && catkin_make | ||
shell: bash | ||
|
||
ros2_node: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
release: [humble, iron] | ||
release: [humble, iron, rolling] | ||
container: osrf/ros:${{ matrix.release }}-desktop | ||
steps: | ||
- name: Setup cmake | ||
|
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
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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -25,35 +25,26 @@ | |
--> | ||
<package format="3"> | ||
<name>kiss_icp</name> | ||
<version>0.3.0</version> | ||
<description>KISS-ICP ROS Wrappers</description> | ||
<version>0.4.0</version> | ||
<description>KISS-ICP ROS 2 Wrapper</description> | ||
<maintainer email="[email protected]">ivizzo</maintainer> | ||
<license>MIT</license> | ||
|
||
<!-- Common ROS 1 / ROS 2 dependencies --> | ||
<build_depend>ros_environment</build_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<!-- ROS 1 dependencies --> | ||
<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend> | ||
<depend condition="$ROS_VERSION == 1">roscpp</depend> | ||
|
||
<!-- ROS 2 dependencies --> | ||
<buildtool_depend condition="$ROS_VERSION == 2">ament_cmake</buildtool_depend> | ||
<depend condition="$ROS_VERSION == 2">rcutils</depend> | ||
<depend condition="$ROS_VERSION == 2">rclcpp</depend> | ||
<depend condition="$ROS_VERSION == 2">rclcpp_components</depend> | ||
<exec_depend condition="$ROS_VERSION == 2">ros2launch</exec_depend> | ||
|
||
<!-- ROS1/2 dependencies --> | ||
<depend>rcutils</depend> | ||
<depend>rclcpp</depend> | ||
<depend>rclcpp_components</depend> | ||
<depend>geometry_msgs</depend> | ||
<depend>nav_msgs</depend> | ||
<depend>std_msgs</depend> | ||
<depend>sensor_msgs</depend> | ||
<depend>tf2</depend> | ||
<depend>tf2_ros</depend> | ||
|
||
<exec_depend>ros2launch</exec_depend> | ||
|
||
<export> | ||
<build_type condition="$ROS_VERSION == 1">catkin</build_type> | ||
<build_type condition="$ROS_VERSION == 2">ament_cmake</build_type> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
Oops, something went wrong.