-
Notifications
You must be signed in to change notification settings - Fork 783
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refs #20542: Refactor nightly workflow to be wd (workflow dispatch) only
Signed-off-by: JesusPoderoso <[email protected]>
- Loading branch information
1 parent
9b99223
commit 8a2e1dd
Showing
2 changed files
with
43 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,43 @@ | ||
name: Fast-DDS Ubuntu CI | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
label: | ||
description: 'ID associated to the workflow' | ||
required: true | ||
type: string | ||
colcon-args: | ||
description: 'Extra arguments for colcon cli' | ||
required: false | ||
type: string | ||
cmake-args: | ||
description: 'Extra arguments for cmake cli' | ||
required: false | ||
type: string | ||
ctest-args: | ||
description: 'Extra arguments for ctest cli' | ||
required: false | ||
type: string | ||
fastdds_branch: | ||
description: 'Branch or tag of Fast DDS repository (https://github.com/eProsima/Fast-DDS)' | ||
type: string | ||
required: true | ||
|
||
jobs: | ||
ubuntu-ci: | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os-image: | ||
- 'ubuntu-22.04' | ||
|
||
uses: ./.github/workflows/reusable-ubuntu-ci.yml | ||
with: | ||
os-image: ${{ matrix.os-image }} | ||
label: ${{ inputs.label || 'ubuntu-ci' }} | ||
colcon-args: ${{ inputs.colcon-args }} | ||
cmake-args: ${{ inputs.cmake-args || "-DSECURITY=ON" }} | ||
ctest-args: ${{ inputs.ctest-args || "-LE xfail" }} | ||
fastdds-branch: ${{ inputs.fastdds_branch || github.ref || '2.10.x' }} |