-
Notifications
You must be signed in to change notification settings - Fork 60
53 lines (45 loc) · 1.32 KB
/
ros2-ci.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: ROS2 CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
BUILD_TYPE: Release
jobs:
build:
name: Build on ros2 ${{ matrix.ros_distro }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ros_distro: [ humble, iron ]
include:
- ros_distro: 'humble'
os: ubuntu-22.04
- ros_distro: 'iron'
os: ubuntu-22.04
steps:
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ matrix.ros_distro }}
- name: Setup ros2 workspace
run: |
source /opt/ros/${{ matrix.ros_distro }}/setup.bash
mkdir -p ${{github.workspace}}/ros2_ws/src
cd ${{github.workspace}}/ros2_ws
colcon build
- uses: actions/checkout@v2
with:
submodules: recursive
path: 'ros2_ws/src/rosflight'
- name: Install dependencies
run: |
cd ${{github.workspace}}/ros2_ws
rosdep update
rosdep install --from-paths ./ -i -y -r --rosdistro ${{ matrix.ros_distro }}
- name: colcon build
run: |
source /opt/ros/${{ matrix.ros_distro }}/setup.bash
cd ${{github.workspace}}/ros2_ws
colcon build --event-handlers console_direct+