-
Notifications
You must be signed in to change notification settings - Fork 16
41 lines (39 loc) · 978 Bytes
/
main.yaml
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
39
40
41
name: main
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
noetic-devel-ci:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ros_distribution:
- noetic
include:
- docker_image: ubuntu:focal
ros_distribution: noetic
ros_version: 1
container:
image: ${{ matrix.docker_image }}
steps:
- name: Setup directories
run: mkdir -p ros_ws/src
- name: checkout
uses: actions/checkout@v3
with:
path: ros_ws/src
- name: Setup ROS environment
uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: Build and Test
uses: ros-tooling/[email protected]
with:
package-name: natnet_ros_cpp
target-ros1-distro: ${{ matrix.ros_distribution }}
skip-tests: true