-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ChenYing Kuo <[email protected]> Co-authored-by: Julien Enoch <[email protected]>
- Loading branch information
Showing
6 changed files
with
388 additions
and
9 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 |
---|---|---|
|
@@ -63,6 +63,46 @@ jobs: | |
- name: Run tests | ||
run: cargo test --verbose | ||
|
||
system_tests_with_ros2_humble: | ||
name: System tests with ROS 2 Humble | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rostooling/setup-ros-docker:ubuntu-jammy-ros-humble-ros-base-latest | ||
steps: | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: humble | ||
|
||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
|
||
- name: Install ACL | ||
run: sudo apt-get -y install libacl1-dev | ||
|
||
- name: Run ROS tests (enable feature ros_test) | ||
shell: bash | ||
run: "source /opt/ros/humble/setup.bash && cargo test --features ros_test --verbose" | ||
|
||
system_tests_with_ros2_jazzy: | ||
name: System tests with ROS 2 Jazzy | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rostooling/setup-ros-docker:ubuntu-noble-ros-jazzy-ros-base-latest | ||
steps: | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: jazzy | ||
|
||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
|
||
- name: Install ACL | ||
run: sudo apt-get -y install libacl1-dev | ||
|
||
- name: Run ROS tests (enable feature ros_test) | ||
shell: bash | ||
run: "source /opt/ros/jazzy/setup.bash && cargo test --features ros_test --verbose" | ||
|
||
# NOTE: In GitHub repository settings, the "Require status checks to pass | ||
# before merging" branch protection rule ensures that commits are only merged | ||
# from branches where specific status checks have passed. These checks are | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.