forked from zeroos/vrpn_client_ros
-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (33 loc) · 1.03 KB
/
foxy.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
38
name: foxy build (EOL)
on:
push:
branches: [ foxy-devel ]
pull_request:
branches: [ foxy-devel ]
workflow_dispatch:
jobs:
foxy_build:
runs-on: ubuntu-20.04
strategy:
matrix:
ros_distribution:
- foxy
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