Skip to content

Commit 852c56c

Browse files
authored
Merge branch 'main' into clang-tidy-b52
2 parents 236f1a8 + 75fde99 commit 852c56c

File tree

307 files changed

+6185
-3218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

307 files changed

+6185
-3218
lines changed

.cppcheck_suppressions

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*:*/test/*
2+
*:*/examples/*
23

34
checkersReport
45
missingInclude

.github/CODEOWNERS

+2
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ planning/behavior_velocity_planner/autoware_behavior_velocity_no_stopping_area_m
170170
planning/behavior_velocity_planner/autoware_behavior_velocity_occlusion_spot_module/** shumpei.wakabayashi@tier4.jp taiki.tanaka@tier4.jp tomoya.kimura@tier4.jp
171171
planning/behavior_velocity_planner/autoware_behavior_velocity_planner/** kosuke.takeuchi@tier4.jp kyoichi.sugahara@tier4.jp makoto.kurihara@tier4.jp mamoru.sobue@tier4.jp maxime.clement@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp taiki.tanaka@tier4.jp takayuki.murooka@tier4.jp tomohito.ando@tier4.jp tomoya.kimura@tier4.jp
172172
planning/behavior_velocity_planner/autoware_behavior_velocity_planner_common/** fumiya.watanabe@tier4.jp isamu.takagi@tier4.jp mamoru.sobue@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
173+
planning/behavior_velocity_planner/autoware_behavior_velocity_rtc_interface/** fumiya.watanabe@tier4.jp isamu.takagi@tier4.jp mamoru.sobue@tier4.jp shumpei.wakabayashi@tier4.jp takayuki.murooka@tier4.jp tomoya.kimura@tier4.jp
173174
planning/behavior_velocity_planner/autoware_behavior_velocity_run_out_module/** kosuke.takeuchi@tier4.jp makoto.kurihara@tier4.jp shumpei.wakabayashi@tier4.jp takayuki.murooka@tier4.jp tomohito.ando@tier4.jp tomoya.kimura@tier4.jp
174175
planning/behavior_velocity_planner/autoware_behavior_velocity_speed_bump_module/** mdogru@leodrive.ai shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
175176
planning/behavior_velocity_planner/autoware_behavior_velocity_stop_line_module/** fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp yukinari.hisaki.2@tier4.jp zhe.shen@tier4.jp
@@ -234,6 +235,7 @@ vehicle/autoware_raw_vehicle_cmd_converter/** kosuke.takeuchi@tier4.jp kyoichi.s
234235
vehicle/autoware_steer_offset_estimator/** taiki.tanaka@tier4.jp
235236
visualization/autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/** ahmed.ebrahim@leodrive.ai
236237
visualization/autoware_overlay_rviz_plugin/autoware_overlay_rviz_plugin/** khalil@leodrive.ai
238+
visualization/autoware_overlay_rviz_plugin/autoware_string_stamped_overlay_rviz_plugin/** satoshi.ota@tier4.jp takayuki.murooka@tier4.jp
237239
visualization/autoware_perception_rviz_plugin/** opensource@apex.ai shunsuke.miura@tier4.jp taiki.tanaka@tier4.jp takeshi.miura@tier4.jp yoshi.ri@tier4.jp
238240
visualization/bag_time_manager_rviz_plugin/** taiki.tanaka@tier4.jp
239241
visualization/tier4_adapi_rviz_plugin/** hiroki.ota@tier4.jp isamu.takagi@tier4.jp kosuke.takeuchi@tier4.jp

.github/actions/build-and-test-differential/action.yaml

-111
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Evaluate Job Result
2+
description: Evaluates the result of a job and updates the summary.
3+
inputs:
4+
job_result:
5+
description: Result of the job to evaluate (e.g., success, failure, skipped)
6+
required: true
7+
type: string
8+
job_name:
9+
description: Name of the job to evaluate
10+
required: true
11+
type: string
12+
expected_results:
13+
description: Comma-separated list of acceptable results (e.g., success,skipped)
14+
required: true
15+
type: string
16+
outputs:
17+
failed:
18+
description: Indicates if the job failed
19+
value: ${{ steps.evaluate.outputs.failed }}
20+
21+
runs:
22+
using: composite
23+
steps:
24+
- name: Evaluate Job Result
25+
id: evaluate
26+
run: |
27+
JOB_RESULT="${{ inputs.job_result }}"
28+
IFS=',' read -ra EXPECTED <<< "${{ inputs.expected_results }}"
29+
FAILED=false
30+
31+
for RESULT in "${EXPECTED[@]}"; do
32+
if [[ "$JOB_RESULT" == "$RESULT" ]]; then
33+
echo "- **${{ inputs.job_name }}:** "$JOB_RESULT" ✅" >> "$GITHUB_STEP_SUMMARY"
34+
echo "failed=false" >> "$GITHUB_OUTPUT"
35+
exit 0
36+
fi
37+
done
38+
39+
# If no expected result matched
40+
echo "::error::${{ inputs.job_name }} failed. ❌"
41+
echo "- **${{ inputs.job_name }}:** failed ❌" >> "$GITHUB_STEP_SUMMARY"
42+
echo "failed=true" >> "$GITHUB_OUTPUT"
43+
44+
exit 1
45+
shell: bash

.github/labeler.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,3 @@
3939
- tools/**/*
4040
"component:vehicle":
4141
- vehicle/**/*
42-
"tag:require-cuda-build-and-test":
43-
- perception/**/*
44-
- sensing/**/*

0 commit comments

Comments
 (0)