|
| 1 | +name: Fast DDS Python Ubuntu CI (nightly) |
| 2 | + |
| 3 | +on: |
| 4 | + workflow_dispatch: |
| 5 | + schedule: |
| 6 | + - cron: '0 1 * * *' |
| 7 | + |
| 8 | +jobs: |
| 9 | + # python main - fastdds master |
| 10 | + nightly-ubuntu-ci-main: |
| 11 | + uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-ubuntu-ci.yml@main |
| 12 | + with: |
| 13 | + # It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket: |
| 14 | + # https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job. |
| 15 | + os-version: 'ubuntu-22.04' |
| 16 | + label: 'nightly-ubuntu-ci-main-master' |
| 17 | + fastdds-python-branch: 'main' |
| 18 | + fastdds-branch: 'master' |
| 19 | + run-build: true |
| 20 | + run-tests: true |
| 21 | + use-ccache: false |
| 22 | + |
| 23 | + # python 2.4.x - fastdds 3.4.x |
| 24 | + nightly-ubuntu-ci-2_4_x: |
| 25 | + uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-ubuntu-ci.yml@2.4.x |
| 26 | + with: |
| 27 | + # It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket: |
| 28 | + # https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job. |
| 29 | + os-version: 'ubuntu-22.04' |
| 30 | + label: 'nightly-ubuntu-ci-2.4.x-3.4.x' |
| 31 | + fastdds-python-branch: '2.4.x' |
| 32 | + fastdds-branch: '3.4.x' |
| 33 | + run-build: true |
| 34 | + run-tests: true |
| 35 | + use-ccache: false |
| 36 | + |
| 37 | + # python 2.2.x - fastdds 3.2.x |
| 38 | + nightly-ubuntu-ci-2_2_x: |
| 39 | + uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-ubuntu-ci.yml@2.2.x |
| 40 | + with: |
| 41 | + # It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket: |
| 42 | + # https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job. |
| 43 | + os-version: 'ubuntu-22.04' |
| 44 | + label: 'nightly-ubuntu-ci-2.2.x-3.2.x' |
| 45 | + fastdds-python-branch: '2.2.x' |
| 46 | + fastdds-branch: '3.2.x' |
| 47 | + run-build: true |
| 48 | + run-tests: true |
| 49 | + use-ccache: false |
| 50 | + |
| 51 | + # python 1.4.x - fastdds 2.14.x |
| 52 | + nightly-ubuntu-ci-1_4_x: |
| 53 | + uses: eProsima/Fast-DDS-Python/.github/workflows/reusable-ubuntu-ci.yml@1.4.x |
| 54 | + with: |
| 55 | + # It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket: |
| 56 | + # https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job. |
| 57 | + os-version: 'ubuntu-22.04' |
| 58 | + label: 'nightly-ubuntu-ci-1.4.x-2.14.x' |
| 59 | + fastdds-python-branch: '1.4.x' |
| 60 | + fastdds-branch: '2.14.x' |
| 61 | + run-build: true |
| 62 | + run-tests: true |
| 63 | + use-ccache: false |
0 commit comments