forked from RobotMotorIntelligence/crocoddyl_msgs
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (30 loc) · 1.17 KB
/
ros-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
name: ROS
on: [push, pull_request]
jobs:
CI:
strategy:
fail-fast: false
matrix:
env:
- {name: "(noetic)", ROS_DISTRO: noetic, BUILDER: catkin_tools}
- {name: "(humble)", ROS_DISTRO: humble}
- {name: "(rolling)", ROS_DISTRO: rolling}
- {name: "(iron)", ROS_DISTRO: iron}
- {name: "(noetic, Debug)", ROS_DISTRO: noetic, BUILDER: catkin_tools, CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug"}
- {name: "(humble, Debug)", ROS_DISTRO: humble, CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug"}
- {name: "(rolling, Debug)", ROS_DISTRO: rolling, CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug"}
- {name: "(iron, Debug)", ROS_DISTRO: iron, CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug"}
name: ${{ matrix.env.name }}
env:
UPSTREAM_WORKSPACE: dependencies.rosinstall
CTEST_OUTPUT_ON_FAILURE: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install compilers for macOS
shell: bash -l {0}
if: contains(matrix.env.ROS_DISTRO, 'noetic')
run: |
pip install pinocchio
- uses: 'ros-industrial/industrial_ci@master'
env: ${{ matrix.env }}