-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (33 loc) · 858 Bytes
/
ci.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
name: interactive_marker_twist_server_ci
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *" # every day at midnight
jobs:
humble_ci:
name: Humble OSRF Industrial
strategy:
matrix:
env:
- {ROS_REPO: testing, ROS_DISTRO: humble}
- {ROS_REPO: main, ROS_DISTRO: humble}
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
jazzy_ci:
name: Jazzy OSRF Industrial
strategy:
matrix:
env:
- {ROS_REPO: testing, ROS_DISTRO: jazzy}
- {ROS_REPO: main, ROS_DISTRO: jazzy}
fail-fast: false
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}