-
Notifications
You must be signed in to change notification settings - Fork 67
feat: jazzy support #276
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
amadeuszsz
wants to merge
14
commits into
tier4:tier4/universe
Choose a base branch
from
amadeuszsz:feat/jazzy-support
base: tier4/universe
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat: jazzy support #276
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
efb6c0a
feat: jazzy support
amadeuszsz 218b178
ci(pre-commit): autofix
pre-commit-ci[bot] 96e9653
fix: cspell
amadeuszsz 52673f8
docs: adjust dead links
amadeuszsz 227db06
refactor: adjust filename
amadeuszsz 2e40de3
feat: keep humble distro compatibility
amadeuszsz dac4bbf
ci(pre-commit): autofix
pre-commit-ci[bot] 4ae07d7
feat: remove outdated sync
amadeuszsz ee60c98
feat(calibrators): adjust deprecated matplotlib API
amadeuszsz c337c60
chore: update & restore workflows
amadeuszsz 1727993
style: apply pre-commit
amadeuszsz 4b1262b
fix(intrinsic_camera_calibrator): pop-up window with matplotlib
amadeuszsz a12b974
chore: restore upstream
amadeuszsz d5d2183
style(pre-commit): autofix
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -90,6 +90,7 @@ | |
| "solvepnp", | ||
| "sqpnp", | ||
| "srvs", | ||
| "stringop", | ||
| "subsampled", | ||
| "subsamples", | ||
| "subsampling", | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,15 @@ | ||
| # This file is automatically synced from: | ||
| # https://github.com/autowarefoundation/sync-file-templates | ||
| # To make changes, update the source repository and follow the guidelines in its README. | ||
|
|
||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: github-actions | ||
| directory: / | ||
| # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#scheduleinterval | ||
| schedule: | ||
| interval: daily | ||
| interval: monthly | ||
| open-pull-requests-limit: 1 | ||
| labels: | ||
| - bot | ||
| - github-actions | ||
| - tag:bot | ||
| - type:github-actions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,32 @@ | ||
| - repository: autowarefoundation/autoware | ||
| - repository: autowarefoundation/sync-file-templates | ||
| files: | ||
| - source: .github/dependabot.yaml | ||
| - source: .github/workflows/build-and-test.yaml | ||
| - source: .github/workflows/build-and-test-differential.yaml | ||
| - source: .github/workflows/cancel-previous-workflows.yaml | ||
| - source: .github/workflows/check-build-depends.yaml | ||
| - source: .github/workflows/clang-tidy-pr-comments.yaml | ||
| - source: .github/workflows/clang-tidy-pr-comments-manually.yaml | ||
| - source: .github/workflows/pre-commit.yaml | ||
| - source: .github/workflows/pre-commit-optional.yaml | ||
| - source: .github/workflows/semantic-pull-request.yaml | ||
| - source: .github/workflows/spell-check-differential.yaml | ||
| pre-commands: | | ||
| sd " with:\n" " with:\n local-cspell-json: .cspell.json\n" {source} | ||
| - source: .github/workflows/spell-check-daily.yaml | ||
| pre-commands: | | ||
| sd " with:\n" " with:\n local-cspell-json: .cspell.json\n" {source} | ||
| - source: .github/workflows/sync-files.yaml | ||
| - source: .clang-format | ||
| - source: .markdown-link-check.json | ||
| - source: .markdownlint.yaml | ||
| - source: .pre-commit-config-optional.yaml | ||
| - source: .pre-commit-config.yaml | ||
| - source: .prettierignore | ||
| - source: .prettierrc.yaml | ||
| - source: .yamllint.yaml | ||
| - source: CODE_OF_CONDUCT.md | ||
| - source: CONTRIBUTING.md | ||
| - source: CPPLINT.cfg | ||
| - source: LICENSE | ||
| - source: setup.cfg | ||
|
|
||
| - repository: autowarefoundation/autoware_common | ||
| files: | ||
| - source: .github/workflows/build-and-test.yaml | ||
| - source: .github/workflows/build-and-test-differential.yaml | ||
| - source: .github/workflows/check-build-depends.yaml | ||
| - source: .github/workflows/clang-tidy-pr-comments.yaml | ||
| - source: .github/workflows/sync-files.yaml | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # This file is automatically synced from: | ||
| # https://github.com/autowarefoundation/sync-file-templates | ||
| # To make changes, update the source repository and follow the guidelines in its README. | ||
|
|
||
| # Deprecated: Use concurrency in each workflow instead. | ||
|
|
||
| name: cancel-previous-workflows | ||
|
|
||
| on: | ||
| pull_request_target: | ||
|
|
||
| jobs: | ||
| cancel-previous-workflows: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - name: Cancel previous runs | ||
| uses: styfle/cancel-workflow-action@0.12.1 | ||
| with: | ||
| workflow_id: all | ||
| all_but_latest: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| # This file is automatically synced from: | ||
| # https://github.com/autowarefoundation/sync-file-templates | ||
| # To make changes, update the source repository and follow the guidelines in its README. | ||
|
|
||
| name: clang-tidy-pr-comments-manually | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| workflow_run_id_or_url: | ||
| description: The target workflow run ID or URL of the build-and-test-differential workflow | ||
| required: true | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| clang-tidy-pr-comments-manually: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - name: Check out repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Download analysis results | ||
| run: | | ||
| workflow_run_id=$(echo "${{ inputs.workflow_run_id_or_url }}" | sed -e "s|.*runs/||" -e "s|/jobs.*||") | ||
| gh run download "$workflow_run_id" -D /tmp || true | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Check if the fixes.yaml file exists | ||
| id: check-fixes-yaml-existence | ||
| uses: autowarefoundation/autoware-github-actions/check-file-existence@v1 | ||
| with: | ||
| files: /tmp/clang-tidy-result/fixes.yaml | ||
|
|
||
| - name: Set variables | ||
| if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | ||
| id: set-variables | ||
| run: | | ||
| echo "pr-id=$(cat /tmp/clang-tidy-result/pr-id.txt)" >> $GITHUB_OUTPUT | ||
| echo "pr-head-repo=$(cat /tmp/clang-tidy-result/pr-head-repo.txt)" >> $GITHUB_OUTPUT | ||
| echo "pr-head-ref=$(cat /tmp/clang-tidy-result/pr-head-ref.txt)" >> $GITHUB_OUTPUT | ||
|
|
||
| - name: Check out PR head | ||
| if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| repository: ${{ steps.set-variables.outputs.pr-head-repo }} | ||
| ref: ${{ steps.set-variables.outputs.pr-head-ref }} | ||
| persist-credentials: false | ||
|
|
||
| - name: Replace paths in fixes.yaml | ||
| if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | ||
| run: | | ||
| sed -i -e "s|/__w/|/home/runner/work/|g" /tmp/clang-tidy-result/fixes.yaml | ||
| cat /tmp/clang-tidy-result/fixes.yaml | ||
|
|
||
| - name: Copy fixes.yaml to access from Docker Container Action | ||
| if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | ||
| run: | | ||
| cp /tmp/clang-tidy-result/fixes.yaml fixes.yaml | ||
|
|
||
| - name: Run clang-tidy-pr-comments action | ||
| if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | ||
| uses: platisd/clang-tidy-pr-comments@v1 | ||
| with: | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||
| clang_tidy_fixes: fixes.yaml | ||
| pull_request_id: ${{ steps.set-variables.outputs.pr-id }} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.