Wait to terminate test until spawner exits #3071
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 - ABI Compatibility Check | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - '**.hpp' | |
| - '**.h' | |
| - '**.cpp' | |
| - '**.py' | |
| - '**.yaml' | |
| - '.github/workflows/rolling-abi-compatibility.yml' | |
| - '**/package.xml' | |
| - '**/CMakeLists.txt' | |
| - 'ros2_control-not-released.rolling.repos' | |
| - 'ros2_control-not-released.lyrical.repos' | |
| 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: | |
| abi_check: | |
| uses: ros-controls/ros2_control_ci/.github/workflows/reusable-abi-check.yml@master | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ROS_DISTRO: [lyrical, rolling] | |
| with: | |
| ros_distro: ${{ matrix.ROS_DISTRO }} |