Separate mg400_node state from mg400 connection state, and always try to reconnect when mg400_node is active #374
Workflow file for this run
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
name: ci_humble | |
on: | |
push: | |
branches: | |
- "humble" | |
pull_request: | |
types: [opened, synchronize, labeled] | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
if: | | |
((github.event.action == 'labeled') && (github.event.label.name == 'TESTING') && (github.base_ref == 'humble' )) || | |
((github.event.action == 'synchronize') && (github.base_ref == 'humble') && contains(github.event.pull_request.labels.*.name, 'TESTING')) || | |
(github.ref_name == 'humble') | |
container: | |
image: osrf/ros:${{ matrix.ros_distribution }}-desktop | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
ros_distribution: [humble] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ros-tooling/[email protected] | |
- name: Build and Test | |
uses: ros-tooling/[email protected] | |
with: | |
target-ros2-distro: ${{ matrix.ros_distribution }} | |
import-token: ${{ secrets.GITHUB_TOKEN }} | |
package-name: | | |
mg400 | |
mg400_bringup | |
mg400_common | |
mg400_description | |
mg400_interface | |
mg400_joy | |
mg400_msgs | |
mg400_node | |
mg400_plugin | |
mg400_plugin_base | |
mg400_rviz_plugin | |
vcs-repo-file-url: build_depends.repos |