-
Notifications
You must be signed in to change notification settings - Fork 75
60 lines (57 loc) · 1.73 KB
/
xs-galactic.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
name: build-xs-galactic
on:
push:
branches:
- galactic
pull_request:
branches:
- galactic
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
xs-galactic:
strategy:
matrix:
env:
- {ROS_DISTRO: galactic}
runs-on: ubuntu-20.04
env:
CCACHE_DIR: "${{ github.workspace }}/.ccache"
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: galactic
submodules: recursive
path: src/interbotix_ros_core
- name: Checkout Apriltag ROS package
uses: actions/checkout@v3
with:
repository: interbotix/apriltag_ros
ref: ros2-port
path: src/apriltag_ros
- name: Checkout MoveIt Visual Tools package
uses: actions/checkout@v3
with:
repository: ros-planning/moveit_visual_tools
ref: ros2
path: src/moveit_visual_tools
- name: Install non-rosdep Python dependencies
run: python3 -m pip install modern-robotics transforms3d
- name: Prepare Workspace
run: |
rm src/interbotix_ros_toolboxes/interbotix_perception_toolbox/COLCON_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_common_toolbox/interbotix_moveit_interface/COLCON_IGNORE
rm src/interbotix_ros_toolboxes/interbotix_common_toolbox/interbotix_moveit_interface_msgs/COLCON_IGNORE
- name: ROS-I CI
uses: ros-industrial/industrial_ci@master
with:
config: ${{toJSON(matrix.env)}}