-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: fix mkdocs settings Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * ci: run ARM64 test if labeled Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * ci: change shfmt config Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * fix target branch name Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * remove deploy-docs.yaml Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * change cron shedule of delete-closed-pr-docs Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * fix workflow name Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
- Loading branch information
1 parent
6bba4f8
commit d6007c3
Showing
9 changed files
with
43 additions
and
37 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: build-and-test-pr-arm | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
build-and-test: | ||
if: ${{ github.event.label.name == 'ARM64' }} | ||
runs-on: [self-hosted, linux, ARM64] | ||
container: ros:galactic | ||
steps: | ||
- name: Get modified packages | ||
id: get-modified-packages | ||
uses: autowarefoundation/autoware-github-actions/get-modified-packages@tier4/proposal | ||
|
||
- name: Build and test | ||
id: build-and-test | ||
uses: autowarefoundation/autoware-github-actions/colcon-build-and-test@tier4/proposal | ||
with: | ||
rosdistro: galactic | ||
build-depends-repos: build_depends.repos | ||
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }} |
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 was deleted.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
.github/workflows/spell-check-pr.yaml → .github/workflows/spell-check.yaml
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,4 +1,4 @@ | ||
name: spell-check-pr | ||
name: spell-check | ||
|
||
on: | ||
pull_request: | ||
|
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,21 +1,21 @@ | ||
#!/bin/sh | ||
|
||
usage_exit() { | ||
echo "Usage: ros2 run autoware_rosbag_recorder record.sh [-o filename]" 1>&2 | ||
exit 1 | ||
echo "Usage: ros2 run autoware_rosbag_recorder record.sh [-o filename]" 1>&2 | ||
exit 1 | ||
} | ||
|
||
while getopts o:h OPT; do | ||
case $OPT in | ||
"o") echo "record as $OPTARG" ;; | ||
"h") usage_exit ;; | ||
"*") usage_exit ;; | ||
\?) usage_exit ;; | ||
esac | ||
case $OPT in | ||
"o") echo "record as $OPTARG" ;; | ||
"h") usage_exit ;; | ||
"*") usage_exit ;; | ||
\?) usage_exit ;; | ||
esac | ||
done | ||
|
||
if [ -n "$OPTARG" ]; then | ||
ros2 bag record -e "(.*)/velodyne_packets|/pacmod_interface/(.*)|/pacmod/(.*)|/vehicle/(.*)|/sensing/imu/(.*)|/sensing/gnss/(.*)|/sensing/camera/(.*)/camera_info|/sensing/camera/(.*)/compressed|/perception/object_recognition/detection/rois(.)|/perception/object_recognition/objects" -o "$OPTARG" | ||
ros2 bag record -e "(.*)/velodyne_packets|/pacmod_interface/(.*)|/pacmod/(.*)|/vehicle/(.*)|/sensing/imu/(.*)|/sensing/gnss/(.*)|/sensing/camera/(.*)/camera_info|/sensing/camera/(.*)/compressed|/perception/object_recognition/detection/rois(.)|/perception/object_recognition/objects" -o "$OPTARG" | ||
else | ||
usage_exit | ||
usage_exit | ||
fi |
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