Adapt test to new way of exporting reference interfaces (Related to #1240 in ros2_control) #1122
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: Rolling Binary Build | |
# author: Denis Štogl <[email protected]> | |
# description: 'Build & test all dependencies from released (binary) packages.' | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
- '*feature*' | |
- '*feature/**' | |
paths: | |
- '**.hpp' | |
- '**.h' | |
- '**.cpp' | |
- '**.py' | |
- '**.yaml' | |
- '.github/workflows/rolling-binary-build.yml' | |
- '**/package.xml' | |
- '**/CMakeLists.txt' | |
- 'ros2_controllers-not-released.rolling.repos' | |
push: | |
branches: | |
- master | |
paths: | |
- '**.hpp' | |
- '**.h' | |
- '**.cpp' | |
- '**.py' | |
- '**.yaml' | |
- '.github/workflows/rolling-binary-build.yml' | |
- '**/package.xml' | |
- '**/CMakeLists.txt' | |
- 'ros2_controllers-not-released.rolling.repos' | |
schedule: | |
# Run every morning to detect flakiness and broken dependencies | |
- cron: '03 1 * * *' | |
jobs: | |
binary: | |
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | |
strategy: | |
fail-fast: false | |
matrix: | |
ROS_REPO: [main, testing] | |
with: | |
ros_distro: rolling | |
ros_repo: ${{ matrix.ROS_REPO }} | |
upstream_workspace: ros2_controllers-not-released.rolling.repos | |
ref_for_scheduled_build: master |