Added watchdog configuration for the reverse socket #192
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: ROS prerelease test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
prerelease_test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ROS_DISTRO: [humble, iron, rolling] | |
OS_VERSION: [jammy] | |
include: | |
- ROS_DISTRO: melodic | |
OS_VERSION: bionic | |
- ROS_DISTRO: noetic | |
OS_VERSION: focal | |
steps: | |
- uses: actions/checkout@v1 | |
- run: sudo apt-get install -y python3-pip | |
- run: sudo pip3 install bloom rosdep | |
- run: sudo rosdep init | |
- run: rosdep update --rosdistro=${{ matrix.ROS_DISTRO }} | |
- run: bloom-generate rosdebian --ros-distro ${{ matrix.ROS_DISTRO }} --os-name ubuntu --os-version ${{ matrix.OS_VERSION }} |