-
Notifications
You must be signed in to change notification settings - Fork 0
/
roboMakerSettings.json
139 lines (139 loc) · 3.76 KB
/
roboMakerSettings.json
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"runConfigurations": [
{
"id": "robot-build",
"name": "Robot Build",
"type": "colcon build",
"cfg": {
"workingDir": "./aws-robomaker-sample-application-open-source-rover/robot_ws",
"cmdArgs": ""
}
},
{
"id": "robot-bundle",
"name": "Robot Bundle",
"type": "colcon bundle",
"cfg": {
"workingDir": "./aws-robomaker-sample-application-open-source-rover/robot_ws",
"cmdArgs": ""
}
},
{
"id": "simulation-build",
"name": "Simulation Build",
"type": "colcon build",
"cfg": {
"workingDir": "./aws-robomaker-sample-application-open-source-rover/simulation_ws",
"cmdArgs": ""
}
},
{
"id": "simulation-bundle",
"name": "Simulation Bundle",
"type": "colcon bundle",
"cfg": {
"workingDir": "./aws-robomaker-sample-application-open-source-rover/simulation_ws",
"cmdArgs": ""
}
},
{
"id": "sim-robot-with-simple-world",
"name": "Mars Rover Simulation",
"type": "simulation",
"cfg": {
"simulation": {
"maxJobDurationInSeconds": 14400,
"failureBehavior": "Fail",
"iamRole": "<YOUR_IAM_ROLE>",
"outputLocation": "<YOUR_S3_BUCKET>",
"vpcConfig": {
"subnets": [],
"securityGroups": [],
"assignPublicIp": true
},
"tags": {}
},
"robotApp": {
"name": "martian-detector-robot",
"sourceBundleFile": "./aws-robomaker-sample-application-open-source-rover/robot_ws/bundle/output.tar",
"s3Bucket": "<YOUR_S3_BUCKET>",
"architecture": "X86_64",
"launchConfig": {
"packageName": "martian_detector",
"launchFile": "martian_detector.launch",
"environmentVariables": {
"S3_BUCKET": "<YOUR_S3_BUCKET>",
"REGION": "us-west-2"
}
},
"robotSoftwareSuite": {
"name": "ROS",
"version": "Melodic"
}
},
"simulationApp": {
"name": "rover-sim",
"sourceBundleFile": "./aws-robomaker-sample-application-open-source-rover/simulation_ws/bundle/output.tar",
"architecture": "X86_64",
"s3Bucket": "<YOUR_S3_BUCKET>",
"launchConfig": {
"packageName": "rover_gazebo",
"launchFile": "main_with_objects.launch",
"environmentVariables": {}
},
"simulationSoftwareSuite": {
"name": "Gazebo",
"version": "9"
},
"renderingEngine": {
"name": "OGRE",
"version": "1.x"
},
"robotSoftwareSuite": {
"name": "ROS",
"version": "Melodic"
}
}
}
},
{
"id": "MartianDetector_wf1",
"type": "workflow",
"name": "Mars Rover - Build and Bundle All",
"runCfgIds": [
"robot-build",
"robot-bundle",
"simulation-build",
"simulation-bundle"
]
},
{
"id": "MartianDetector_wf2",
"type": "workflow",
"name": "Mars Rover - Build and Bundle Robot",
"runCfgIds": [
"robot-build",
"robot-bundle"
]
},
{
"id": "MartianDetector_wf3",
"type": "workflow",
"name": "Mars Rover - Build and Bundle Simulation",
"runCfgIds": [
"simulation-build",
"simulation-bundle"
]
},
{
"id": "124d3797-2ce8-547b-e2d0-e3219e3957e7",
"name": "Mars Rover - Build, Bundle and Run Sim",
"type": "workflow",
"runCfgIds": [
"simulation-build",
"simulation-bundle",
"sim-robot-with-simple-world"
]
}
]
}