forked from colcon/ci
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (46 loc) · 1.51 KB
/
ci.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
---
name: Run tests
on: # yamllint disable-line rule:truthy
push:
branches: ['main', 'devel']
pull_request:
jobs:
canary:
uses: ./.github/workflows/pytest.yaml
with:
matrix-filter: del(.matrix.os[] | select(contains("windows")))
# Choose rosdistro for a canary build. It has ros-infrastructure
# dependencies and installs scripts, so exercieses a fair amount of the
# CI action features.
repository: ros-infrastructure/rosdistro
# Use HEAD to find strategy.json file instead of the tip of
# ros-infrastructure/ci
setup-repository: ''
canary-catkin-pkg:
uses: ./.github/workflows/pytest.yaml
with:
matrix-filter: del(.matrix.os[] | select(contains("windows")))
repository: ros-infrastructure/catkin_pkg
setup-repository: ''
canary-rospkg:
uses: ./.github/workflows/pytest.yaml
with:
matrix-filter: del(.matrix.os[] | select(contains("windows")))
repository: ros-infrastructure/rospkg
setup-repository: ''
canary-rosinstall-generator:
uses: ./.github/workflows/pytest.yaml
with:
matrix-filter: del(.matrix.os[] | select(contains("windows")))
repository: ros-infrastructure/rosinstall_generator
setup-repository: ''
canary-rosdoc2:
uses: ./.github/workflows/pytest.yaml
with:
repository: ros-infrastructure/rosdoc2@cottsay/extras-require-test
setup-repository: ''
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yamllint .