Skip to content
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

Disable ros_test #358

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 39 additions & 39 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,45 +63,45 @@ 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"
# 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
Expand Down
Loading
Loading