Skip to content

Fast DDS Python Windows CI (nightly) #34

Fast DDS Python Windows CI (nightly)

Fast DDS Python Windows CI (nightly) #34

name: Fast DDS Python Windows CI (nightly)
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * *'
jobs:
# python main - fastdds master
nightly-windows-ci-main:
uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-windows-ci.yml@main
with:
os-version: 'windows-2019'
vs-toolset: 'v142'
label: 'nightly-windows-v142-ci-main-master'
fastdds-python-branch: 'main'
fastdds-branch: 'master'
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:
- 'v141'
- 'v142'
uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-windows-ci.yml@1.4.x
with:
os-version: 'windows-2019'
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
# python 1.2.x - fastdds 2.10.x
nightly-windows-ci-1_2_x:
strategy:
fail-fast: false
matrix:
vs-toolset:
- 'v141'
- 'v142'
uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-windows-ci.yml@1.2.x
with:
os-version: 'windows-2019'
vs-toolset: ${{ matrix.vs-toolset }}
label: 'nightly-windows-${{ matrix.vs-toolset }}-ci-1.2.x-2.10.x'
fastdds-python-branch: '1.2.x'
fastdds-branch: '2.10.x'
run-build: true
run-tests: true