Skip to content

.github/workflows/nightly-windows-ci.yml #618

.github/workflows/nightly-windows-ci.yml

.github/workflows/nightly-windows-ci.yml #618

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

View workflow run for this annotation

GitHub Actions / .github/workflows/nightly-windows-ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/nightly-windows-ci.yml" -> "eProsima/Fast-DDS-Python/.github/workflows/reusable-windows-ci.yml@main" : failed to fetch workflow: reference to workflow should be either a valid branch, tag, or commit
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