Skip to content

Commit b3d0f71

Browse files
authored
Merge branch 'main' into fix/manual_controller-reverse
2 parents 332e084 + ebb4172 commit b3d0f71

File tree

977 files changed

+32527
-20565
lines changed

Some content is hidden

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

977 files changed

+32527
-20565
lines changed

.cspell-partial.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"perception/bytetrack/lib/**"
66
],
77
"ignoreRegExpList": [],
8-
"words": ["dltype", "tvmgen", "quantizer", "imageio", "mimsave"]
8+
"words": ["dltype", "tvmgen"]
99
}

.github/CODEOWNERS

+59-57
Large diffs are not rendered by default.

.github/workflows/build-and-test-differential.yaml

+5-35
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
rosdistro:
2525
- humble
2626
container-suffix:
27-
- ""
2827
- -cuda
2928
include:
3029
- rosdistro: humble
@@ -36,6 +35,9 @@ jobs:
3635
with:
3736
fetch-depth: 0
3837

38+
- name: Check disk space before build
39+
run: df -h
40+
3941
- name: Remove exec_depend
4042
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
4143

@@ -69,37 +71,5 @@ jobs:
6971
verbose: true
7072
flags: differential
7173

72-
clang-tidy-differential:
73-
runs-on: [self-hosted, linux, X64]
74-
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
75-
needs: build-and-test-differential
76-
steps:
77-
- name: Check out repository
78-
uses: actions/checkout@v3
79-
with:
80-
fetch-depth: 0
81-
82-
- name: Remove exec_depend
83-
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
84-
85-
- name: Get modified packages
86-
id: get-modified-packages
87-
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1
88-
89-
- name: Get modified files
90-
id: get-modified-files
91-
uses: tj-actions/changed-files@v35
92-
with:
93-
files: |
94-
**/*.cpp
95-
**/*.hpp
96-
97-
- name: Run clang-tidy
98-
if: ${{ steps.get-modified-files.outputs.all_changed_files != '' }}
99-
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1
100-
with:
101-
rosdistro: humble
102-
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
103-
target-files: ${{ steps.get-modified-files.outputs.all_changed_files }}
104-
clang-tidy-config-url: https://raw.githubusercontent.com/autowarefoundation/autoware/main/.clang-tidy
105-
build-depends-repos: build_depends.repos
74+
- name: Check disk space after build
75+
run: df -h

.github/workflows/build-and-test.yaml

+1-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build-and-test:
1111
if: ${{ github.event_name != 'push' || github.ref_name == github.event.repository.default_branch }}
12-
runs-on: ubuntu-latest
12+
runs-on: [self-hosted, linux, X64]
1313
container: ${{ matrix.container }}${{ matrix.container-suffix }}
1414
strategy:
1515
fail-fast: false
@@ -27,14 +27,6 @@ jobs:
2727
- name: Check out repository
2828
uses: actions/checkout@v3
2929

30-
- name: Free disk space (Ubuntu)
31-
uses: jlumbroso/free-disk-space@v1.2.0
32-
with:
33-
tool-cache: false
34-
dotnet: false
35-
swap-storage: false
36-
large-packages: false
37-
3830
- name: Remove exec_depend
3931
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
4032

.github/workflows/json-schema-check.yaml

+25-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,38 @@ name: json-schema-check
22

33
on:
44
pull_request:
5-
paths:
6-
- "**/schema/*.schema.json"
7-
- "**/config/*.param.yaml"
5+
workflow_dispatch:
86

97
jobs:
8+
check-if-relevant-files-changed:
9+
runs-on: ubuntu-latest
10+
outputs:
11+
run-check: ${{ steps.paths_filter.outputs.json_or_yaml }}
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: dorny/paths-filter@v3
15+
id: paths_filter
16+
with:
17+
filters: |
18+
json_or_yaml:
19+
- '**/schema/*.schema.json'
20+
- '**/config/*.param.yaml'
21+
1022
json-schema-check:
23+
needs: check-if-relevant-files-changed
24+
if: needs.check-if-relevant-files-changed.outputs.run-check == 'true'
1125
runs-on: ubuntu-latest
1226
steps:
1327
- name: Check out repository
1428
uses: actions/checkout@v3
1529

1630
- name: Run json-schema-check
1731
uses: autowarefoundation/autoware-github-actions/json-schema-check@v1
32+
33+
no-relevant-changes:
34+
needs: check-if-relevant-files-changed
35+
if: needs.check-if-relevant-files-changed.outputs.run-check == 'false'
36+
runs-on: ubuntu-latest
37+
steps:
38+
- name: Dummy step
39+
run: echo "No relevant changes, passing check"

.github/workflows/spell-check-differential.yaml

-16
This file was deleted.

README.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
# autoware.universe
1+
# Autoware Universe
22

3-
For Autoware's general documentation, see [Autoware Documentation](https://autowarefoundation.github.io/autoware-documentation/).
3+
## Welcome to Autoware Universe
44

5-
For detailed documents of Autoware Universe components, see [Autoware Universe Documentation](https://autowarefoundation.github.io/autoware.universe/).
5+
Autoware Universe serves as a foundational pillar within the Autoware ecosystem, playing a critical role in enhancing the core functionalities of autonomous driving technologies.
6+
This repository is a pivotal element of the Autoware Core/Universe concept, managing a wide array of packages that significantly extend the capabilities of autonomous vehicles.
67

7-
---
8+
![autoware_universe_front](docs/assets/images/autoware_universe_front.png)
9+
10+
## Getting Started
11+
12+
To dive into the vast world of Autoware and understand how Autoware Universe fits into the bigger picture, we recommend starting with the [Autoware Documentation](https://autowarefoundation.github.io/autoware-documentation/). This resource provides a thorough overview of the Autoware ecosystem, guiding you through its components, functionalities, and how to get started with development.
13+
14+
### Explore Autoware Universe documentation
15+
16+
For those looking to explore the specifics of Autoware Universe components, the [Autoware Universe Documentation](https://autowarefoundation.github.io/autoware.universe/), deployed with MKDocs, offers detailed insights.

common/autoware_auto_perception_rviz_plugin/include/autoware_auto_perception_rviz_plugin/object_detection/object_polygon_detail.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,10 @@ AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_bounding_box_direction_lin
186186
const autoware_auto_perception_msgs::msg::Shape & shape,
187187
std::vector<geometry_msgs::msg::Point> & points);
188188

189+
AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_bounding_box_orientation_line_list(
190+
const autoware_auto_perception_msgs::msg::Shape & shape,
191+
std::vector<geometry_msgs::msg::Point> & points);
192+
189193
AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_2d_bounding_box_bottom_line_list(
190194
const autoware_auto_perception_msgs::msg::Shape & shape,
191195
std::vector<geometry_msgs::msg::Point> & points);
@@ -194,6 +198,10 @@ AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_2d_bounding_box_bottom_dir
194198
const autoware_auto_perception_msgs::msg::Shape & shape,
195199
std::vector<geometry_msgs::msg::Point> & points);
196200

201+
AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_2d_bounding_box_bottom_orientation_line_list(
202+
const autoware_auto_perception_msgs::msg::Shape & shape,
203+
std::vector<geometry_msgs::msg::Point> & points);
204+
197205
AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC void calc_cylinder_line_list(
198206
const autoware_auto_perception_msgs::msg::Shape & shape,
199207
std::vector<geometry_msgs::msg::Point> & points);

common/autoware_auto_perception_rviz_plugin/package.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
<maintainer email="satoshi.tanaka@tier4.jp">Satoshi Tanaka</maintainer>
99
<maintainer email="taiki.tanaka@tier4.jp">Taiki Tanaka</maintainer>
1010
<maintainer email="takeshi.miura@tier4.jp">Takeshi Miura</maintainer>
11-
11+
<maintainer email="shunsuke.miura@tier4.jp">Shunsuke Miura</maintainer>
12+
<maintainer email="yoshi.ri@tier4.jp">Yoshi Ri</maintainer>
1213
<license>Apache 2.0</license>
1314

1415
<buildtool_depend>ament_cmake</buildtool_depend>

0 commit comments

Comments
 (0)