Preallocate std::vector
variables for interfaces (backport #1893)
#6
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: Jazzy - pre-release | |
# author: Christoph Froehlich <[email protected]> | |
on: | |
workflow_dispatch: | |
inputs: | |
downstream_depth: | |
description: 'The depth of the depends-on tree to be included in the overlay workspace (-1 implies unlimited, default: 0)' | |
required: false | |
default: 0 | |
type: number | |
pull_request: | |
branches: | |
- jazzy | |
types: | |
- opened # default | |
- reopened # default | |
- synchronize # default | |
- labeled # also if a label changes | |
jobs: | |
default: | |
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-prerelease.yml@master | |
with: | |
ros_distro: jazzy | |
# downstream_depth is not set on pull_request event | |
prerelease_downstream_depth: ${{ github.event_name == 'pull_request' && '0' || inputs.downstream_depth }} |