Fast DDS Python Ubuntu CI (nightly) #614
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 Ubuntu CI (nightly) | ||
| on: | ||
| workflow_dispatch: | ||
| schedule: | ||
| - cron: '0 1 * * *' | ||
| jobs: | ||
| # python main - fastdds master | ||
| nightly-ubuntu-ci-main: | ||
| uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-ubuntu-ci.yml@main | ||
|
Check failure on line 11 in .github/workflows/nightly-ubuntu-ci.yml
|
||
| with: | ||
| # It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket: | ||
| # https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job. | ||
| os-version: 'ubuntu-22.04' | ||
| label: 'nightly-ubuntu-ci-main-master' | ||
| fastdds-python-branch: 'main' | ||
| fastdds-branch: 'master' | ||
| run-build: true | ||
| run-tests: true | ||
| use-ccache: false | ||
| # python 2.4.x - fastdds 3.4.x | ||
| nightly-ubuntu-ci-2_4_x: | ||
| uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-ubuntu-ci.yml@2.4.x | ||
| with: | ||
| # It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket: | ||
| # https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job. | ||
| os-version: 'ubuntu-22.04' | ||
| label: 'nightly-ubuntu-ci-2.4.x-3.4.x' | ||
| fastdds-python-branch: '2.4.x' | ||
| fastdds-branch: '3.4.x' | ||
| run-build: true | ||
| run-tests: true | ||
| use-ccache: false | ||
| # python 2.2.x - fastdds 3.2.x | ||
| nightly-ubuntu-ci-2_2_x: | ||
| uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-ubuntu-ci.yml@2.2.x | ||
| with: | ||
| # It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket: | ||
| # https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job. | ||
| os-version: 'ubuntu-22.04' | ||
| label: 'nightly-ubuntu-ci-2.2.x-3.2.x' | ||
| fastdds-python-branch: '2.2.x' | ||
| fastdds-branch: '3.2.x' | ||
| run-build: true | ||
| run-tests: true | ||
| use-ccache: false | ||
| # python 1.4.x - fastdds 2.14.x | ||
| nightly-ubuntu-ci-1_4_x: | ||
| uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-ubuntu-ci.yml@1.4.x | ||
| with: | ||
| # It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket: | ||
| # https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job. | ||
| os-version: 'ubuntu-22.04' | ||
| label: 'nightly-ubuntu-ci-1.4.x-2.14.x' | ||
| fastdds-python-branch: '1.4.x' | ||
| fastdds-branch: '2.14.x' | ||
| run-build: true | ||
| run-tests: true | ||
| use-ccache: false | ||