-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (38 loc) · 1.08 KB
/
build.yml
File metadata and controls
39 lines (38 loc) · 1.08 KB
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
---
name: Build and test
"on":
pull_request:
push:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ros: [humble, jazzy, kilted, rolling]
package: [behaviortree_cpp_pluginlib, behaviortree_cpp_pluginlib_tests]
include:
- ros: humble
ubuntu: jammy
- ros: jazzy
ubuntu: noble
- ros: kilted
ubuntu: noble-testing
- ros: rolling
ubuntu: noble
name: ${{ matrix.ros }} - ${{ matrix.package }}
container:
image: ghcr.io/ros-tooling/setup-ros-docker/setup-ros-docker-ubuntu-${{ matrix.ubuntu }}:latest
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/action-ros-ci@v0.4
with:
target-ros2-distro: ${{ matrix.ros }}
package-name: ${{ matrix.package }}
import-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v4
with:
name: colcon-logs__${{ matrix.package }}__${{ matrix.ros }}
path: ros_ws/log