Skip to content

Commit a9dcdd1

Browse files
author
KhalilSelyan
committed
Merge branch 'main' into perception-objects-pointcloud-better-visualization
Signed-off-by: KhalilSelyan <khalil@leodrive.ai>
2 parents a24b8f6 + a7e83ff commit a9dcdd1

File tree

3,791 files changed

+145717
-136834
lines changed

Some content is hidden

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

3,791 files changed

+145717
-136834
lines changed

.cppcheck_suppressions

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
*:*/test/*
2+
3+
checkersReport
4+
constParameterReference
5+
constVariable
6+
constVariableReference
7+
containerOutOfBounds
8+
// cspell: ignore cstyle
9+
cstyleCast
10+
duplicateBranch
11+
duplicateBreak
12+
funcArgNamesDifferent
13+
functionConst
14+
functionStatic
15+
invalidPointerCast
16+
knownConditionTrueFalse
17+
missingInclude
18+
missingIncludeSystem
19+
noConstructor
20+
noExplicitConstructor
21+
noValidConfiguration
22+
passedByValue
23+
preprocessorErrorDirective
24+
redundantInitialization
25+
shadowFunction
26+
shadowVariable
27+
syntaxError
28+
// cspell: ignore uninit
29+
uninitMemberVar
30+
unknownMacro
31+
unmatchedSuppression
32+
unreadVariable
33+
unusedFunction
34+
unusedStructMember
35+
unusedVariable
36+
useInitializationList
37+
useStlAlgorithm
38+
uselessOverride
39+
variableScope
40+
virtualCallInConstructor

.github/CODEOWNERS

+89-101
Large diffs are not rendered by default.

.github/PULL_REQUEST_TEMPLATE.md

-8
This file was deleted.

.github/PULL_REQUEST_TEMPLATE/small-change.md

-44
This file was deleted.

.github/PULL_REQUEST_TEMPLATE/standard-change.md

-63
This file was deleted.

.github/pull_request_template.md

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
## Description
2+
3+
## Related links
4+
5+
**Parent Issue:**
6+
7+
- Link
8+
9+
<!-- ⬇️🟢
10+
**Private Links:**
11+
12+
- [CompanyName internal link]()
13+
⬆️🟢 -->
14+
15+
## How was this PR tested?
16+
17+
## Notes for reviewers
18+
19+
None.
20+
21+
## Interface changes
22+
23+
None.
24+
25+
<!-- ⬇️🔴
26+
27+
### Topic changes
28+
29+
#### Additions and removals
30+
31+
| Change type | Topic Type | Topic Name | Message Type | Description |
32+
|:--------------|:----------------|:--------------|:--------------------|:------------------|
33+
| Added/Removed | Pub/Sub/Srv/Cli | `/topic_name` | `std_msgs/String` | Topic description |
34+
35+
#### Modifications
36+
37+
| Version | Topic Type | Topic Name | Message Type | Description |
38+
|:--------|:----------------|:------------------|:--------------------|:------------------|
39+
| Old | Pub/Sub/Srv/Cli | `/old_topic_name` | `sensor_msgs/Image` | Topic description |
40+
| New | Pub/Sub/Srv/Cli | `/new_topic_name` | `sensor_msgs/Image` | Topic description |
41+
42+
### ROS Parameter Changes
43+
44+
#### Additions and removals
45+
46+
| Change type | Parameter Name | Type | Default Value | Description |
47+
|:--------------|:---------------|:---------|:--------------|:------------------|
48+
| Added/Removed | `param_name` | `double` | `1.0` | Param description |
49+
50+
#### Modifications
51+
52+
| Version | Parameter Name | Type | Default Value | Description |
53+
|:--------|:-----------------|:---------|:--------------|:------------------|
54+
| Old | `old_param_name` | `double` | `1.0` | Param description |
55+
| New | `new_param_name` | `double` | `1.0` | Param description |
56+
57+
🔴⬆️ -->
58+
59+
## Effects on system behavior
60+
61+
None.

.github/sync-files.yaml

+10-35
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
- source: .github/ISSUE_TEMPLATE/bug.yaml
88
- source: .github/ISSUE_TEMPLATE/config.yml
99
- source: .github/ISSUE_TEMPLATE/task.yaml
10-
- source: .github/PULL_REQUEST_TEMPLATE.md
11-
- source: .github/PULL_REQUEST_TEMPLATE/small-change.md
12-
- source: .github/PULL_REQUEST_TEMPLATE/standard-change.md
1310
- source: .github/dependabot.yaml
1411
- source: .github/stale.yml
1512
- source: .github/workflows/cancel-previous-workflows.yaml
@@ -18,6 +15,14 @@
1815
- source: .github/workflows/pre-commit-optional.yaml
1916
- source: .github/workflows/semantic-pull-request.yaml
2017
- source: .github/workflows/spell-check-differential.yaml
18+
pre-commands: |
19+
sd " with:\n" " with:\n local-cspell-json: .cspell.json\n" {source}
20+
- source: .github/workflows/spell-check-differential.yaml
21+
dest: .github/workflows/spell-check-daily.yaml
22+
pre-commands: |
23+
sd "spell-check-differential" "spell-check-daily" {source}
24+
sd " with:\n" " with:\n local-cspell-json: .cspell.json\n incremental-files-only: false\n" {source}
25+
sd "on:\n pull_request:\n" "on:\n schedule:\n - cron: 0 0 * * *\n workflow_dispatch:\n" {source}
2126
- source: .github/workflows/sync-files.yaml
2227
- source: .clang-format
2328
- source: .markdown-link-check.json
@@ -31,39 +36,9 @@
3136

3237
- repository: autowarefoundation/autoware_common
3338
files:
34-
- source: .github/workflows/build-and-test.yaml
35-
pre-commands: |
36-
sd "container: ros:(\w+)" "container: ghcr.io/autowarefoundation/autoware-universe:\$1-latest" {source}
37-
38-
sd -s 'container: ${{ matrix.container }}' 'container: ${{ matrix.container }}${{ matrix.container-suffix }}' {source}
39-
sd -- \
40-
" include:" \
41-
" container-suffix:
42-
- \"\"
43-
- -cuda
44-
include:" {source}
45-
- source: .github/workflows/build-and-test-differential-self-hosted.yaml
39+
- source: .github/workflows/clang-tidy-differential.yaml
4640
pre-commands: |
47-
sd "container: ros:(\w+)" "container: ghcr.io/autowarefoundation/autoware-universe:\$1-latest" {source}
48-
49-
sd -s 'container: ${{ matrix.container }}' 'container: ${{ matrix.container }}${{ matrix.container-suffix }}' {source}
50-
sd -- \
51-
" include:" \
52-
" container-suffix:
53-
- \"\"
54-
- -cuda
55-
include:" {source}
56-
- source: .github/workflows/build-and-test-self-hosted.yaml
57-
pre-commands: |
58-
sd "container: ros:(\w+)" "container: ghcr.io/autowarefoundation/autoware-universe:\$1-latest" {source}
59-
60-
sd -s 'container: ${{ matrix.container }}' 'container: ${{ matrix.container }}${{ matrix.container-suffix }}' {source}
61-
sd -- \
62-
" include:" \
63-
" container-suffix:
64-
- \"\"
65-
- -cuda
66-
include:" {source}
41+
sd 'container: ros:(\w+)' 'container: ghcr.io/autowarefoundation/autoware:latest-prebuilt-cuda' {source}
6742
- source: .github/workflows/check-build-depends.yaml
6843
- source: .github/workflows/clang-tidy-pr-comments.yaml
6944
- source: .github/workflows/clang-tidy-pr-comments-manually.yaml

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

-55
This file was deleted.

0 commit comments

Comments
 (0)