Fast DDS Ubuntu CI (nightly) #153
This file contains 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 Ubuntu CI (nightly) | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 1 * * *' | ||
jobs: | ||
nightly-ubuntu-ci-master: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os-image: | ||
- 'ubuntu-22.04' | ||
security: | ||
- true | ||
- false | ||
uses: eProsima/Fast-DDS/.github/workflows/reusable-ubuntu-ci.yml@master | ||
with: | ||
os-image: ${{ matrix.os-image }} | ||
label: '${{ matrix.os-image }}-nightly-sec-${{ matrix.security }}-ubuntu-ci-master' | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: 'master' | ||
security: ${{ matrix.security }} | ||
run-build: true | ||
run-tests: true | ||
use-ccache: false | ||
nightly-ubuntu-ci-2_14_x: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os-image: | ||
- 'ubuntu-22.04' | ||
security: | ||
- true | ||
- false | ||
uses: eProsima/Fast-DDS/.github/workflows/[email protected] | ||
with: | ||
os-image: ${{ matrix.os-image }} | ||
label: '${{ matrix.os-image }}-nightly-sec-${{ matrix.security }}-ubuntu-ci-2.14.x' | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: '2.14.x' | ||
security: ${{ matrix.security }} | ||
run-build: true | ||
run-tests: true | ||
use-ccache: false | ||
nightly-ubuntu-ci-2_13_x: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os-image: | ||
- 'ubuntu-22.04' | ||
security: | ||
- true | ||
- false | ||
uses: eProsima/Fast-DDS/.github/workflows/[email protected] | ||
with: | ||
os-image: ${{ matrix.os-image }} | ||
label: '${{ matrix.os-image }}-nightly-sec-${{ matrix.security }}-ubuntu-ci-2.13.x' | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: '2.13.x' | ||
security: ${{ matrix.security }} | ||
run-build: true | ||
Check failure on line 65 in .github/workflows/nightly-ubuntu-ci.yml GitHub Actions / Fast DDS Ubuntu CI (nightly)Invalid workflow file
|
||
run-tests: true | ||
use-ccache: false | ||
nightly-ubuntu-ci-2_10_x: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os-image: | ||
- 'ubuntu-22.04' | ||
security: | ||
- true | ||
- false | ||
uses: eProsima/Fast-DDS/.github/workflows/[email protected] | ||
with: | ||
os-image: ${{ matrix.os-image }} | ||
label: '${{ matrix.os-image }}-nightly-sec-${{ matrix.security }}-ubuntu-ci-2.10.x' | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: '2.10.x' | ||
security: ${{ matrix.security }} | ||
run-build: true | ||
run-tests: true | ||
use-ccache: false | ||