[19490] Fix Github windows CI (backport #3887) #564
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: Fast-DDS Windows CI | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
label: | ||
description: 'ID associated to the workflow. Must univocally identify artifacts.' | ||
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 | ||
push: | ||
branches: | ||
- 'master' | ||
- '2.10.x' | ||
- '2.9.x' | ||
- '2.6.x' | ||
- '2.1.x' | ||
paths-ignore: | ||
- '**.md' | ||
- '**.txt' | ||
- '!**/CMakeLists.txt' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
- '**.txt' | ||
- '!**/CMakeLists.txt' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
windows-ci: | ||
uses: ./.github/workflows/reusable-windows-ci.yml | ||
Check failure on line 50 in .github/workflows/windows-ci.yml GitHub Actions / .github/workflows/windows-ci.ymlInvalid workflow file
|
||
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-ci') }} | ||
with: | ||
label: ${{ inputs.label || 'windows-ci' }} | ||
colcon-args: ${{ inputs.colcon-args }} | ||
cmake-args: ${{ inputs.cmake-args }} | ||
ctest-args: ${{ inputs.ctest-args }} | ||
fastdds_branch: ${{ inputs.fastdds_branch || github.base_ref || github.ref || 'master' }} |