Skip to content

chore: sync files #214

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/delete-closed-pr-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
7 changes: 6 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ repos:
hooks:
- id: yamllint

- repo: https://github.com/autowarefoundation/autoware-guideline-check
rev: 0.1.0
hooks:
- id: check-package-depends

- repo: https://github.com/tier4/pre-commit-hooks-ros
rev: v0.10.0
hooks:
Expand Down Expand Up @@ -74,7 +79,7 @@ repos:
args: [--line-length=100]

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.5
rev: v19.1.6
hooks:
- id: clang-format
types_or: [c++, c, cuda]
Expand Down
2 changes: 2 additions & 0 deletions control/vehicle_cmd_analyzer/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>

<exec_depend>autoware_global_parameter_loader</exec_depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
3 changes: 3 additions & 0 deletions driving_environment_analyzer/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
<depend>tier4_rtc_msgs</depend>
<depend>visualization_msgs</depend>

<exec_depend>autoware_launch</exec_depend>
<exec_depend>autoware_map_projection_loader</exec_depend>

<export>
<build_type>ament_cmake</build_type>
<rviz plugin="${prefix}/plugins/plugin_description.xml"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@
<depend>tf2</depend>
<depend>tf2_ros</depend>

<exec_depend>autoware_ekf_localizer</exec_depend>
<exec_depend>autoware_gyro_odometer</exec_depend>
<exec_depend>autoware_imu_corrector</exec_depend>
<exec_depend>autoware_launch</exec_depend>
<exec_depend>autoware_vehicle_velocity_converter</exec_depend>
<exec_depend>tier4_map_launch</exec_depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>
Expand Down
2 changes: 2 additions & 0 deletions planning/autoware_planning_data_analyzer/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
<depend>tier4_planning_msgs</depend>
<depend>visualization_msgs</depend>

<exec_depend>autoware_global_parameter_loader</exec_depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>

Expand Down
1 change: 1 addition & 0 deletions planning/autoware_static_centerline_generator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<depend>rclcpp_components</depend>
<depend>tier4_map_msgs</depend>

<exec_depend>autoware_launch</exec_depend>
<exec_depend>python3-flask-cors</exec_depend>
<exec_depend>rosidl_default_runtime</exec_depend>

Expand Down
7 changes: 7 additions & 0 deletions vehicle/parameter_estimator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,15 @@
<depend>rclcpp</depend>
<depend>sensor_msgs</depend>
<depend>tier4_calibration_msgs</depend>
<exec_depend>autoware_global_parameter_loader</exec_depend>
<exec_depend>autoware_launch</exec_depend>
<exec_depend>calibration_adapter</exec_depend>
<exec_depend>dynamic_object_visualization</exec_depend>
<exec_depend>map_launch</exec_depend>
<exec_depend>plotjuggler</exec_depend>
<exec_depend>plotjuggler_ros</exec_depend>
<exec_depend>time_delay_estimator</exec_depend>
<exec_depend>vehicle_launch</exec_depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_lint_common</test_depend>
Expand Down
Loading