[17283] Fix issues in Dynamic Network Interfaces (backport #5282) #2332
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: Fast-DDS MacOS CI | |
on: | |
workflow_dispatch: | |
inputs: | |
label: | |
description: 'ID associated to the workflow' | |
required: true | |
type: string | |
colcon-args: | |
description: 'Extra arguments for colcon cli' | |
required: false | |
type: string | |
cmake-args: | |
description: 'Extra arguments for cmake cli' | |
required: false | |
type: string | |
ctest-args: | |
description: 'Extra arguments for ctest cli' | |
required: false | |
type: string | |
fastdds_branch: | |
description: 'Branch or tag of Fast DDS repository (https://github.com/eProsima/Fast-DDS)' | |
type: string | |
required: true | |
use-ccache: | |
description: 'Use CCache to speed up the build' | |
required: false | |
type: boolean | |
default: false | |
pull_request: | |
types: | |
- review_requested | |
paths-ignore: | |
- '**.md' | |
- '**.txt' | |
- '!**/CMakeLists.txt' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
mac-ci: | |
if: ${{ ( | |
!contains(github.event.pull_request.labels.*.name, 'skip-ci') && | |
!contains(github.event.pull_request.labels.*.name, 'conflicts') | |
) }} | |
uses: ./.github/workflows/reusable-mac-ci.yml | |
with: | |
label: ${{ inputs.label || 'mac-ci' }} | |
colcon-args: ${{ inputs.colcon-args }} | |
cmake-args: '-DSECURITY=ON ${{ inputs.cmake-args }}' | |
ctest-args: ${{ inputs.ctest-args }} | |
fastdds-branch: ${{ inputs.fastdds_branch || github.ref || '2.14.x' }} | |
use-ccache: ${{ ((inputs.use-ccache == true) && true) || false }} |