-
Notifications
You must be signed in to change notification settings - Fork 11
52 lines (50 loc) · 1.3 KB
/
foxy-binary-build.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Foxy Binary Build
on:
push:
branches:
- foxy
pull_request:
branches:
- foxy
jobs:
foxy_binary:
name: Foxy binary job
runs-on: ubuntu-20.04
container:
image: osrf/ros:foxy-desktop
strategy:
fail-fast: false
env:
ROS_DISTRO: foxy
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install -y \
libeigen3-dev \
ros-foxy-xacro \
ros-foxy-tinyxml2-vendor \
ros-foxy-ros2-control \
ros-foxy-realtime-tools \
ros-foxy-control-toolbox \
ros-foxy-moveit \
ros-foxy-ros2-controllers \
ros-foxy-test-msgs \
ros-foxy-joint-state-publisher \
ros-foxy-joint-state-publisher-gui \
ros-foxy-robot-state-publisher
- name: Build and run tests
id: action-ros-ci
uses: ros-tooling/[email protected]
with:
target-ros2-distro: ${{ env.ROS_DISTRO }}
package-name: |
flexiv_bringup
flexiv_controllers
flexiv_description
flexiv_hardware
flexiv_moveit_config
flexiv_msgs
flexiv_test_nodes
skip-tests: true