Add joint_command_topic_hardware_interface package #306
Workflow file for this run
This file contains hidden or 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: Rolling - Debian Semi-Binary Build | |
| on: | |
| workflow_dispatch: | |
| pull_request: &event | |
| branches: | |
| - main | |
| paths: | |
| - '**.hpp' | |
| - '**.h' | |
| - '**.cpp' | |
| - '**.py' | |
| - '**.yaml' | |
| - '.github/workflows/rolling-debian-build.yml' | |
| - '**/package.xml' | |
| - '**/CMakeLists.txt' | |
| - 'topic_based_hardware_interfaces.rolling.repos' | |
| - 'topic_based_hardware_interfaces.lyrical.repos' | |
| - 'topic_based_hardware_interfaces.kilted.repos' | |
| - 'topic_based_hardware_interfaces.jazzy.repos' | |
| - '**.xml' | |
| push: *event | |
| concurrency: | |
| # cancel previous runs of the same workflow, except for pushes on given branches | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }} | |
| jobs: | |
| debian_semi_binary_build: | |
| uses: ros-controls/ros2_control_ci/.github/workflows/reusable-debian-build.yml@master | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ROS_DISTRO: [jazzy, kilted, lyrical, rolling] | |
| with: | |
| ros_distro: ${{ matrix.ROS_DISTRO }} | |
| upstream_workspace: topic_based_hardware_interfaces.${{ matrix.ROS_DISTRO }}.repos | |
| ref_for_scheduled_build: main |