forked from autowarefoundation/autoware_launch
-
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.
Merge pull request autowarefoundation#558 from tier4/sync-tier4-upstream
chore: sync upstream
- Loading branch information
Showing
84 changed files
with
2,722 additions
and
359 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: beta-to-tier4-main-sync | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
source_branch: | ||
description: Source branch | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
sync-beta-branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Generate token | ||
id: generate-token | ||
uses: tibdex/github-app-token@v1 | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.PRIVATE_KEY }} | ||
|
||
- name: Run sync-branches | ||
uses: autowarefoundation/autoware-github-actions/sync-branches@v1 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
base-branch: tier4/main | ||
sync-pr-branch: beta-to-tier4-main-sync | ||
sync-target-repository: https://github.com/tier4/autoware_launch.git | ||
sync-target-branch: ${{ inputs.source_branch }} | ||
pr-title: "chore: sync beta branch ${{ inputs.source_branch }} with tier4/main" | ||
pr-labels: | | ||
bot | ||
sync-beta-branch | ||
auto-merge-method: merge |
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 |
---|---|---|
|
@@ -24,6 +24,14 @@ jobs: | |
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Free disk space (Ubuntu) | ||
uses: jlumbroso/[email protected] | ||
with: | ||
tool-cache: false | ||
dotnet: false | ||
swap-storage: false | ||
large-packages: false | ||
|
||
- name: Remove exec_depend | ||
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1 | ||
|
||
|
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
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
4 changes: 2 additions & 2 deletions
4
autoware_launch/config/control/control_validator/control_validator.param.yaml
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,14 @@ | ||
/**: | ||
ros__parameters: | ||
|
||
publish_diag: true # if true, diagnostic msg is published | ||
publish_diag: false # if true, diagnostic msg is published | ||
|
||
# If the number of consecutive invalid predicted_path exceeds this threshold, the Diag will be set to ERROR. | ||
# (For example, threshold = 1 means, even if the predicted_path is invalid, Diag will not be ERROR if | ||
# the next predicted_path is valid.) | ||
diag_error_count_threshold: 0 | ||
|
||
display_on_terminal: true # show error msg on terminal | ||
display_on_terminal: false # show error msg on terminal | ||
|
||
thresholds: | ||
max_distance_deviation: 1.0 |
7 changes: 6 additions & 1 deletion
7
autoware_launch/config/control/lane_departure_checker/lane_departure_checker.param.yaml
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
22 changes: 22 additions & 0 deletions
22
autoware_launch/config/control/predicted_path_checker/predicted_path_checker.param.yaml
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,22 @@ | ||
/**: | ||
ros__parameters: | ||
# Node | ||
update_rate: 10.0 | ||
delay_time: 0.17 | ||
max_deceleration: 1.5 | ||
resample_interval: 0.5 | ||
stop_margin: 0.5 # [m] | ||
ego_nearest_dist_threshold: 3.0 # [m] | ||
ego_nearest_yaw_threshold: 1.046 # [rad] = 60 [deg] | ||
min_trajectory_check_length: 1.5 # [m] | ||
trajectory_check_time: 3.0 | ||
distinct_point_distance_threshold: 0.3 | ||
distinct_point_yaw_threshold: 5.0 # [deg] | ||
filtering_distance_threshold: 1.5 # [m] | ||
use_object_prediction: true | ||
|
||
collision_checker_params: | ||
width_margin: 0.2 | ||
chattering_threshold: 0.2 | ||
z_axis_filtering_buffer: 0.3 | ||
enable_z_axis_obstacle_filtering: 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
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
6 changes: 3 additions & 3 deletions
6
autoware_launch/config/localization/localization_error_monitor.param.yaml
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,7 +1,7 @@ | ||
/**: | ||
ros__parameters: | ||
scale: 3.0 | ||
error_ellipse_size: 1.0 | ||
warn_ellipse_size: 0.8 | ||
error_ellipse_size: 1.5 | ||
warn_ellipse_size: 1.2 | ||
error_ellipse_size_lateral_direction: 0.3 | ||
warn_ellipse_size_lateral_direction: 0.2 | ||
warn_ellipse_size_lateral_direction: 0.25 |
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
Oops, something went wrong.