forked from autowarefoundation/autoware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Oguz Ozturk <[email protected]>
- Loading branch information
1 parent
fe6272a
commit f6f5a50
Showing
16 changed files
with
818 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
group "default" { | ||
targets = [ | ||
"simulator-visualizer" | ||
"simulator-visualizer", | ||
"planning-control-fail", | ||
"planning-control-pass" | ||
] | ||
} | ||
|
||
// For docker/metadata-action | ||
target "docker-metadata-action-simulator-visualizer" {} | ||
target "docker-metadata-action-planning-control-fail" {} | ||
target "docker-metadata-action-planning-control-pass" {} | ||
|
||
target "simulator-visualizer" { | ||
inherits = ["docker-metadata-action-simulator-visualizer"] | ||
dockerfile = "docker/simulator-visualizer/Dockerfile" | ||
target = "simulator-visualizer" | ||
} | ||
|
||
target "planning-control-fail" { | ||
inherits = ["docker-metadata-action-planning-control-fail"] | ||
dockerfile = "docker/planning-control/fail/Dockerfile" | ||
target = "planning-control-fail" | ||
} | ||
|
||
target "planning-control-pass" { | ||
inherits = ["docker-metadata-action-planning-control-pass"] | ||
dockerfile = "docker/planning-control/pass/Dockerfile" | ||
target = "planning-control-pass" | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
services: | ||
simulator: | ||
image: ghcr.io/autowarefoundation/autoware_snapshots:simulator-visualizer-amd64 | ||
network_mode: "host" | ||
volumes: | ||
- /dev/shm:/dev/shm | ||
- /etc/localtime:/etc/localtime:ro | ||
- /tmp/.X11-unix:/tmp/.X11-unix:rw | ||
- ./etc/map:/autoware/map | ||
- ./etc/simulation:/autoware/simulation | ||
environment: | ||
- ROS_DOMAIN_ID=88 | ||
- DISPLAY=${DISPLAY} | ||
- VNC_ENABLED=false | ||
command: >- | ||
ros2 launch | ||
scenario_test_runner | ||
scenario_test_runner.launch.py | ||
architecture_type:=awf/universe/20240605 | ||
record:=false | ||
sensor_model:=sample_sensor_kit | ||
vehicle_model:=sample_vehicle | ||
scenario:=/autoware/simulation/yield_maneuver_demo.yaml | ||
map_path:=/autoware/map | ||
global_timeout:=240 | ||
initialize_duration:=90 | ||
launch_autoware:=false | ||
launch_rviz:=true | ||
planning-control: | ||
image: ghcr.io/autowarefoundation/autoware:universe | ||
network_mode: "host" | ||
volumes: | ||
- /dev/shm:/dev/shm | ||
- /etc/localtime:/etc/localtime:ro | ||
- ./etc/map:/autoware/map | ||
environment: | ||
- ROS_DOMAIN_ID=88 | ||
command: >- | ||
ros2 launch | ||
autoware_launch | ||
planning_simulator.launch.xml | ||
scenario_simulation:=true | ||
vehicle_model:=sample_vehicle | ||
sensor_model:=sample_sensor_kit | ||
map_path:=/autoware/map | ||
use_foa:=false | ||
perception/enable_traffic_light:=false | ||
rviz:=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
# shellcheck disable=SC1090,SC1091 | ||
|
||
source "/opt/ros/$ROS_DISTRO/setup.bash" | ||
source /opt/autoware/setup.bash | ||
exec "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM ghcr.io/autowarefoundation/autoware:universe AS planning-control-fail | ||
|
||
# Copy launch file | ||
COPY docker/planning-control/fail/fail_scenario.launch.xml /opt/autoware/share/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/static_obstacle_avoidance.param.yaml | ||
|
||
# Copy entrypoint script | ||
COPY docker/planning-control/entrypoint.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
ENTRYPOINT ["/entrypoint.sh"] |
Oops, something went wrong.