Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add ecal dependency into package.xml #68

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 10 additions & 21 deletions .github/workflows/ros_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,56 +13,45 @@ jobs:
fail-fast: false
matrix:
ros_distribution:
- foxy
- galactic
- humble
- iron
- rolling
include:
# Foxy Fitzroy
- os: ubuntu
os_release: focal
ros_distribution: foxy
ros_version: 2
# Galactic Geochelone
- os: ubuntu
os_release: focal
ros_distribution: galactic
ros_version: 2
# Humble Hawksbill
- os: ubuntu
os_release: jammy
ros_distribution: humble
ros_version: 2
# Iron Irwini
- os: ubuntu
os_release: jammy
ros_distribution: iron
ros_version: 2
# Rolling Ridley
- os: ubuntu
os_release: focal
os_release: jammy
ros_distribution: rolling
ros_version: 2
container:
image: '${{ matrix.os }}:${{ matrix.os_release }}'
steps:
- name: install prereqs
run: apt update && apt install -y sudo curl software-properties-common
- name: install eCAL
run: |
add-apt-repository ppa:ecal/ecal-latest \
; apt-get update \
; apt-get install -y ecal \
- name: setup directories
run: mkdir -p ros_ws/src
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: ros_ws/src
- name: setup ROS environment
uses: ros-tooling/setup-ros@v0.3
uses: ros-tooling/setup-ros@v0.7
with:
use-ros2-testing: false
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: rosdep install
run: "rosdep update && rosdep install -r --from-paths ros_ws/src --ignore-src --rosdistro ${{ matrix.ros_distribution }} -y"
- name: build
uses: ros-tooling/action-ros-ci@v0.2
uses: ros-tooling/action-ros-ci@v0.3
with:
package-name: rmw_ecal_dynamic_cpp
target-ros2-distro: ${{ matrix.ros_distribution }}
Expand Down
1 change: 1 addition & 0 deletions rmw_ecal_shared_cpp/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<build_depend>rmw</build_depend>
<build_depend>protobuf-dev</build_depend>
<build_depend>ecal</build_depend>

<depend>rmw_implementation_cmake</depend>
<depend>rosidl_generator_c</depend>
Expand Down
Loading