forked from LCAS/setup-ros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
53 lines (49 loc) · 1.42 KB
/
action.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
53
name: "Setup ROS environment"
description: |
Install system dependencies required to build ROS and ROS 2 packages
author: "ROS Tooling Working Group"
branding:
icon: "box"
color: "gray-dark"
inputs:
saga-deb-read-user:
description: |
Username for the read-user at SagaRobotics' private APT repository
required: true
saga-deb-read-pass:
description: |
Password for the read-user at SagaRobotics' private APT repository
required: true
use-ros2-testing:
description: |
Enable use of the ROS2 pre-release testing debs.
required: false
default: "false"
install-connext:
description: |
Install RTI Connext (and by default accept non-commercial license).
required: false
default: "false"
required-ros-distributions:
description: |
List of binary ROS distributions to be installed.
Support for non-Linux platform is not implemented yet, so this
parameter is ignored on Mac OS X and Windows.
Allowed ROS distributions
- "" (no value) - no ROS binary installation
- kinetic
- melodic
- noetic
- dashing
- eloquent
- foxy
- galactic
- rolling
Multiple values can be passed using a whitespace delimited list
"melodic dashing".
For each passed ROS distribution, its desktop variant will be installed.
required: false
default: ""
runs:
using: "node12"
main: "dist/index.js"