-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support multiple versions of Fast DDS in CI (#449)
* Support multiple versions of Fast DDS in CI Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Fix inputs in workflow dispatch Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Add dev-utils branch Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Update fastcdr default version Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Remove redundant github workspace in paths Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Remove redundant github workspace in paths in docker workflow Signed-off-by: Raul Sanchez-Mateos <[email protected]> --------- Signed-off-by: Raul Sanchez-Mateos <[email protected]>
- Loading branch information
1 parent
947abed
commit 8ec10cf
Showing
7 changed files
with
490 additions
and
364 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
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
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,53 @@ | ||
# Nightly test workflow for DDS Router | ||
name: nightly | ||
|
||
on: | ||
schedule: | ||
- cron: '0 5 * * *' | ||
|
||
jobs: | ||
|
||
reusable_tests_v2: | ||
name: reusable_tests_v2 | ||
uses: ./.github/workflows/reusable-workflow.yml | ||
with: | ||
custom_version_build: 'v2' | ||
dependencies_artifact_postfix: '_nightly' | ||
secrets: inherit | ||
|
||
# Uncomment this block to run the tests for Fast DDS v3 when DDS Router is updated | ||
# Also specify here (and above) the workflow version/branch to use (@v0, @main, etc.) | ||
# reusable_tests_v3: | ||
# name: reusable_tests_v3 | ||
# uses: ./.github/workflows/reusable-workflow.yml | ||
# with: | ||
# custom_version_build: 'v3' | ||
# dependencies_artifact_postfix: '_nightly' | ||
# secrets: inherit | ||
|
||
reusable_docker_tests_v2: | ||
name: reusable_docker_tests_v2 | ||
uses: ./.github/workflows/docker-reusable-workflow.yml | ||
with: | ||
fastcdr_branch: '2.x' | ||
fastdds_branch: '2.x' | ||
ddspipe_branch: 'main' | ||
ddsrouter_branch: 'main' | ||
custom_version_build: 'v2' | ||
dependencies_artifact_postfix: '_nightly' | ||
secrets: inherit | ||
|
||
# Uncomment this block to run the tests for Fast DDS v3 when DDS Router is updated | ||
# Also specify here (and above) the workflow version/branch to use (@v0, @main, etc.) | ||
# reusable_docker_tests_v3: | ||
# name: reusable_docker_tests_v3 | ||
# uses: ./.github/workflows/docker-reusable-workflow.yml | ||
# with: | ||
# fastcdr_branch: '2.x' | ||
# fastdds_branch: '3.x' | ||
# ddspipe_branch: 'main' | ||
# ddsrouter_branch: 'main' | ||
# custom_version_build: 'v3' | ||
# dependencies_artifact_postfix: '_nightly' | ||
# secrets: inherit | ||
|
Oops, something went wrong.