.github/workflows/nightly-windows-ci.yml #618
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: Fast DDS Python Windows CI (nightly) | ||
| on: | ||
| workflow_dispatch: | ||
| schedule: | ||
| - cron: '0 1 * * *' | ||
| jobs: | ||
| # python main - fastdds master | ||
| nightly-windows-ci-main: | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| vs-toolset: | ||
| - 'v142' | ||
| - 'v143' | ||
| uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-windows-ci.yml@main | ||
|
Check failure on line 17 in .github/workflows/nightly-windows-ci.yml
|
||
| with: | ||
| os-version: 'windows-2022' | ||
| vs-toolset: ${{ matrix.vs-toolset }} | ||
| label: 'nightly-windows-${{ matrix.vs-toolset }}-ci-main-master' | ||
| fastdds-python-branch: 'main' | ||
| fastdds-branch: 'master' | ||
| run-build: true | ||
| run-tests: true | ||
| # python 2.4.x - fastdds 3.4.x | ||
| nightly-windows-ci-2_4_x: | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| vs-toolset: | ||
| - 'v142' | ||
| - 'v143' | ||
| uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-windows-ci.yml@2.4.x | ||
| with: | ||
| os-version: 'windows-2022' | ||
| vs-toolset: ${{ matrix.vs-toolset }} | ||
| label: 'nightly-windows-${{ matrix.vs-toolset }}-ci-2.4.x-3.4.x' | ||
| fastdds-python-branch: '2.4.x' | ||
| fastdds-branch: '3.4.x' | ||
| run-build: true | ||
| run-tests: true | ||
| # python 2.2.x - fastdds 3.2.x | ||
| nightly-windows-ci-2_2_x: | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| vs-toolset: | ||
| - 'v142' | ||
| - 'v143' | ||
| uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-windows-ci.yml@2.2.x | ||
| with: | ||
| os-version: 'windows-2022' | ||
| vs-toolset: ${{ matrix.vs-toolset }} | ||
| label: 'nightly-windows-${{ matrix.vs-toolset }}-ci-2.2.x-3.2.x' | ||
| fastdds-python-branch: '2.2.x' | ||
| fastdds-branch: '3.2.x' | ||
| run-build: true | ||
| run-tests: true | ||
| # python 1.4.x - fastdds 2.14.x | ||
| nightly-windows-ci-1_4_x: | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| vs-toolset: | ||
| - 'v142' | ||
| uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-windows-ci.yml@1.4.x | ||
| with: | ||
| os-version: 'windows-2022' | ||
| vs-toolset: ${{ matrix.vs-toolset }} | ||
| label: 'nightly-windows-${{ matrix.vs-toolset }}-ci-1.4.x-2.14.x' | ||
| fastdds-python-branch: '1.4.x' | ||
| fastdds-branch: '2.14.x' | ||
| run-build: true | ||
| run-tests: true | ||