Changes after branching humble (backport #217) (#224) #4
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: Humble Downstream Build | |
# description: 'Build & test downstream packages from source.' | |
# author: Christoph Froehlich <[email protected]> | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- humble | |
push: | |
branches: | |
- humble | |
concurrency: | |
# cancel previous runs of the same workflow, except for pushes on humble branch | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} | |
jobs: | |
build-downstream: | |
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | |
with: | |
ros_distro: humble | |
ros_repo: testing | |
ref_for_scheduled_build: master | |
not_test_build: true | |
downstream_workspace: ros_controls.humble.repos | |
not_test_downstream: true |