-
Notifications
You must be signed in to change notification settings - Fork 68
49 lines (46 loc) · 1.35 KB
/
xs-noetic.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
name: build-xs-noetic
on:
push:
branches:
- main
- devel
- noetic
pull_request:
branches:
- main
- devel
- noetic
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
xs-noetic:
strategy:
matrix:
env:
- {ROS_DISTRO: noetic, ROS_REPO: main, BUILDER: catkin_tools, NOT_TEST_BUILD: true}
- {ROS_DISTRO: noetic, ROS_REPO: main, BUILDER: catkin_make, NOT_TEST_BUILD: true}
runs-on: ubuntu-20.04
steps:
- name: Checkout ROS Toolboxes
uses: actions/checkout@v3
with:
submodules: recursive
path: src/interbotix_ros_toolboxes
- name: Checkout ROS Core
uses: actions/checkout@v3
with:
repository: interbotix/interbotix_ros_core
ref: noetic
path: src/interbotix_ros_core
- name: Prepare Workspace
run: |
rm src/interbotix_ros_core/interbotix_ros_xseries/CATKIN_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_xs_toolbox/CATKIN_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_perception_toolbox/CATKIN_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_common_toolbox/interbotix_moveit_interface/CATKIN_IGNORE
- name: ROS-I CI
uses: ros-industrial/industrial_ci@master
with:
config: ${{toJSON(matrix.env)}}