Skip to content

Commit 2941bcf

Browse files
authoredFeb 26, 2025
Merge branch 'main' into replace-universe-utils-with-autoware-utils
2 parents fb1e43c + a0816b7 commit 2941bcf

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

‎.github/workflows/build-test-tidy-pr.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,4 @@ jobs:
8383
container: ghcr.io/autowarefoundation/autoware:universe-devel
8484
container-suffix: -cuda
8585
run-condition: ${{ needs.check-if-cuda-job-is-needed.outputs.cuda_job_is_needed == 'true' && needs.build-and-test-differential-cuda.result == 'success' }}
86+
runner: codebuild-autoware-us-east-1-${{ github.run_id }}-${{ github.run_attempt }}-ubuntu-7.0-large

‎planning/motion_velocity_planner/autoware_motion_velocity_planner_common_universe/src/polygon_utils.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ std::optional<std::pair<geometry_msgs::msg::Point, double>> get_collision_point(
150150
max_collision_point = poly_vertex.point;
151151
}
152152
}
153+
if (!max_collision_point.has_value() || !max_collision_length.has_value()) return std::nullopt;
153154
return std::make_pair(
154155
*max_collision_point,
155156
autoware::motion_utils::calcSignedArcLength(traj_points, 0, collision_info.first) -

0 commit comments

Comments
 (0)