Skip to content

Commit

Permalink
Ros2 migration (#21)
Browse files Browse the repository at this point in the history
* Migrate hbba_lite to ROS2.

* Update README.md

* Fix package.

* Refactoring.

* Cleanup

* Fix CMakeLists.txt.

* Fix examples.

* Format

* Create hbba_lite_msgs and hbba_lite_srvs.

* Fix for humble

* Use ref instead of pointer

* Fix rclpy.shutdown().

* Fix shutdowns.

* Fix depedency exports

* Fix build for CMake 3.22.1

* Fix includes installation

* Update pull-request-audit.yaml

* Update pull-request-audit.yaml

* Update pull-request-audit.yaml

* Update pull-request-audit.yaml

* Update README.md

---------

Co-authored-by: Dominic Létourneau <[email protected]>
Co-authored-by: philippewarren <[email protected]>
  • Loading branch information
3 people authored Jul 6, 2024
1 parent f3e17af commit 7382ff6
Show file tree
Hide file tree
Showing 101 changed files with 1,644 additions and 1,541 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/pull-request-audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,41 @@ name: pull-request-audit

on:
push:
branches: [main]
branches: [ros2]

pull_request:
branches: [main]
branches: [ros2]

workflow_dispatch:
branches: [main]
branches: [ros2]

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
with:
path: catkin_ws/src/hbba_lite
path: colcon_ws/src/hbba_lite

- uses: ros-tooling/[email protected]
with:
required-ros-distributions: noetic
required-ros-distributions: humble

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install libgecode-dev
- name: Compile packages in ROS workspace
working-directory: catkin_ws
working-directory: colcon_ws
run: |
source /opt/ros/noetic/setup.bash
catkin_make -j1
source /opt/ros/humble/setup.bash
colcon build
- name: Run tests
working-directory: catkin_ws
working-directory: colcon_ws
run: |
source /opt/ros/noetic/setup.bash
catkin_make run_tests
source /opt/ros/humble/setup.bash
colcon test --packages-up-to hbba_lite
colcon test-result --all --verbose
288 changes: 0 additions & 288 deletions CMakeLists.txt

This file was deleted.

Loading

0 comments on commit 7382ff6

Please sign in to comment.