-
Notifications
You must be signed in to change notification settings - Fork 774
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI - Avoid CCache in workflows and nightlies (#4971)
* Refs #21158: Remove CCache in Ubuntu nightly workflows Signed-off-by: JesusPoderoso <[email protected]> * Refs #21158: Avoid CCache in remain workflows Signed-off-by: JesusPoderoso <[email protected]> --------- Signed-off-by: JesusPoderoso <[email protected]> (cherry picked from commit 7f6f423) # Conflicts: # .github/workflows/mac-ci.yml # .github/workflows/nightly-mac-ci.yml # .github/workflows/nightly-ubuntu-ci.yml
- Loading branch information
1 parent
b74ff76
commit f2dfa1d
Showing
5 changed files
with
204 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Fast DDS MacOS CI (nightly) | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 1 * * *' | ||
|
||
jobs: | ||
nightly-mac-ci-master: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
security: | ||
- 'ON' | ||
- 'OFF' | ||
uses: eProsima/Fast-DDS/.github/workflows/reusable-mac-ci.yml@master | ||
with: | ||
label: 'nightly-sec-${{ matrix.security }}-mac-ci-master' | ||
cmake-args: "-DSECURITY=${{ matrix.security }}" | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: 'master' | ||
use-ccache: false | ||
|
||
nightly-mac-ci-2_14_x: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
security: | ||
- 'ON' | ||
- 'OFF' | ||
uses: eProsima/Fast-DDS/.github/workflows/[email protected] | ||
with: | ||
label: 'nightly-sec-${{ matrix.security }}-mac-ci-2.14.x' | ||
cmake-args: "-DSECURITY=${{ matrix.security }}" | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: '2.14.x' | ||
use-ccache: false | ||
|
||
nightly-mac-ci-2_13_x: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
security: | ||
- 'ON' | ||
- 'OFF' | ||
uses: eProsima/Fast-DDS/.github/workflows/[email protected] | ||
with: | ||
label: 'nightly-sec-${{ matrix.security }}-mac-ci-2.13.x' | ||
cmake-args: "-DSECURITY=${{ matrix.security }}" | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: '2.13.x' | ||
use-ccache: false | ||
|
||
nightly-mac-ci-2_10_x: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
security: | ||
- 'ON' | ||
- 'OFF' | ||
uses: eProsima/Fast-DDS/.github/workflows/[email protected] | ||
with: | ||
label: 'nightly-sec-${{ matrix.security }}-mac-ci-2.10.x' | ||
cmake-args: "-DSECURITY=${{ matrix.security }}" | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: '2.10.x' | ||
use-ccache: false | ||
|
||
nightly-mac-ci-2_6_x: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
security: | ||
- 'ON' | ||
- 'OFF' | ||
uses: eProsima/Fast-DDS/.github/workflows/[email protected] | ||
with: | ||
label: 'nightly-sec-${{ matrix.security }}-mac-ci-2.6.x' | ||
cmake-args: "-DSECURITY=${{ matrix.security }}" | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: '2.6.x' | ||
use-ccache: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
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-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-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-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-tests: true | ||
use-ccache: false | ||
|
||
nightly-ubuntu-ci-2_6_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.6.x' | ||
ctest-args: "-LE xfail" | ||
fastdds-branch: '2.6.x' | ||
security: ${{ matrix.security }} | ||
run-tests: true | ||
use-ccache: false |
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
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