-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (61 loc) · 1.54 KB
/
test.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
individual-setup-build-test:
name: Individual Setup, Build and Test
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
distro: [humble, iron]
steps:
- name: Checkout this repository
uses: actions/checkout@v4.1.6
- name: Checkout ROS 2 examples
uses: actions/checkout@v4.1.6
with:
repository: ros2/examples
ref: ${{ matrix.distro }}
path: examples
sparse-checkout: |
rclcpp/topics
rclpy/topics
- name: Setup workspace
uses: ./setup
with:
distro: ${{ matrix.distro }}
- name: Build workspace
uses: ./build
with:
distro: ${{ matrix.distro }}
- name: Test workspace
uses: ./test
with:
distro: ${{ matrix.distro }}
setup-build-test:
name: Setup, Build and Test
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
distro: [humble, iron]
steps:
- name: Checkout this repository
uses: actions/checkout@v4.1.6
- name: Checkout ROS 2 examples
uses: actions/checkout@v4.1.6
with:
repository: ros2/examples
ref: ${{ matrix.distro }}
path: examples
sparse-checkout: |
rclcpp/topics
rclpy/topics
- name: Setup, build and test workspace
uses: ./
with:
distro: ${{ matrix.distro }}