forked from zeroos/vrpn_client_ros
-
Notifications
You must be signed in to change notification settings - Fork 4
37 lines (33 loc) · 996 Bytes
/
rolling.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: rolling build
on:
push:
branches: [ foxy-devel ]
pull_request:
branches: [ foxy-devel ]
workflow_dispatch:
jobs:
rolling_build:
runs-on: ubuntu-24.04
strategy:
matrix:
ros_distribution:
- rolling
steps:
- name: Setup ROS environment
uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: Install system dependencies
run: |
sudo apt update
sudo apt install -y \
ros-${{ matrix.ros_distribution }}-geometry-msgs \
ros-${{ matrix.ros_distribution }}-tf2 \
ros-${{ matrix.ros_distribution }}-tf2-ros \
ros-${{ matrix.ros_distribution }}-vrpn \
- name: Build and test ROS 2
uses: ros-tooling/[email protected]
with:
package-name: vrpn_client_ros
target-ros2-distro: ${{ matrix.ros_distribution }}
skip-tests: true