generated from tier4/ros2-project-template
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
325 changed files
with
27,837 additions
and
19,579 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -45,3 +45,6 @@ IncludeCategories: | |
- Regex: '".*"' | ||
Priority: 1 | ||
CaseSensitive: true | ||
--- | ||
Language: Json | ||
BasedOnStyle: llvm |
This file contains 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 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 |
---|---|---|
|
@@ -54,4 +54,3 @@ jobs: | |
fail_ci_if_error: false | ||
verbose: true | ||
flags: differential | ||
|
This file contains 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,28 +1,44 @@ | ||
# cspell: ignore nojekyll | ||
name: documentation | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
pull_request: | ||
types: [closed] | ||
permissions: | ||
contents: write | ||
id-token: write | ||
pages: write | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged == true | ||
if: github.event_name == 'push' || github.event.pull_request.merged == true | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/cache@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v4 | ||
with: | ||
key: ${{ github.ref }} | ||
path: .cache | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: | | ||
sudo apt update && sudo apt install -y doxygen && \ | ||
pip install mkdocs-material \ | ||
mkdocs \ | ||
pip install mkdocs \ | ||
mkdocs-material \ | ||
Jinja2 \ | ||
ruamel.yaml && \ | ||
pip install git+https://github.com/JakubAndrysek/mkdoxy | ||
- run: mkdocs gh-deploy --force | ||
- run: mkdocs build --site-dir _site | ||
- run: touch _site/.nojekyll | ||
- run: | | ||
chmod -c -R +rX "_site/" | while read line; do | ||
echo "::warning title=Invalid file permissions automatically fixed::$line" | ||
done | ||
- uses: actions/upload-pages-artifact@v3 | ||
- uses: actions/deploy-pages@v4 |
This file contains 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,39 @@ | ||
name: json-schema-check | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
check-if-relevant-files-changed: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
run-check: ${{ steps.paths_filter.outputs.json_or_yaml }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dorny/paths-filter@v3 | ||
id: paths_filter | ||
with: | ||
filters: | | ||
json_or_yaml: | ||
- '**/schema/*.schema.json' | ||
- '**/config/**/*.param.yaml' | ||
json-schema-check: | ||
needs: check-if-relevant-files-changed | ||
if: needs.check-if-relevant-files-changed.outputs.run-check == 'true' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run json-schema-check | ||
uses: autowarefoundation/autoware-github-actions/json-schema-check@main | ||
|
||
no-relevant-changes: | ||
needs: check-if-relevant-files-changed | ||
if: needs.check-if-relevant-files-changed.outputs.run-check == 'false' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Dummy step | ||
run: echo "No relevant changes, passing check" |
This file contains 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 |
---|---|---|
|
@@ -29,3 +29,6 @@ site/ | |
|
||
# qcreator stuff | ||
CMakeLists.txt.user | ||
|
||
# pre-commit | ||
node_modules/ |
This file contains 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 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 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,2 +1,3 @@ | ||
*.param.yaml | ||
*.yaml | ||
*.rviz | ||
*.json |
This file contains 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
Oops, something went wrong.