-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (28 loc) · 960 Bytes
/
rolling.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
# This is workflow for rolling distribution
name: rolling
# Because of rcl_logging interface, rcl_logging_syslog has each distribution branch.
on:
push:
branches: [ "rolling" ]
pull_request:
branches: [ "rolling" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# each job goes for each ros supported distribution.
# each job description absorb the distribution dependency as much as possible,
# so that build/test verification script can be agnostic from distribution dependency.
build:
runs-on: ubuntu-latest
container:
image: ros:rolling
env:
ROS_DISTRO: rolling
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Build and Test with ROS rolling
shell: bash
run: |
./scripts/github_workflows.sh