-
Notifications
You must be signed in to change notification settings - Fork 111
38 lines (37 loc) · 930 Bytes
/
ros.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: Build for Ros2
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
noble_rolling:
runs-on: ubuntu-24.04
env:
ROS_DISTRO: ${{ matrix.ros_distro }}
container:
image: rostooling/setup-ros-docker:ubuntu-noble-ros-rolling-ros-base-latest
strategy:
fail-fast: false
matrix:
ros_distro: [rolling]
steps:
- name: checkout source
uses: actions/checkout@v4
- name: Build and run tests
id: action-ros-ci
uses: ros-tooling/[email protected]
with:
package-name: "fields2cover"
target-ros2-distro: ${{ matrix.ros_distro }}
vcs-repo-file-url: "${{ github.workspace }}/.github/deps.repos"
colcon-defaults: |
{
"test": {
"packages-select": [
"fields2cover"
]
}
}