Skip to content

Commit

Permalink
Restructure github actions and update readme (#491)
Browse files Browse the repository at this point in the history
Signed-off-by: Raul Sanchez-Mateos <[email protected]>
  • Loading branch information
rsanchez15 authored Feb 12, 2025
1 parent 990406c commit 58a36bd
Show file tree
Hide file tree
Showing 9 changed files with 508 additions and 466 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/nightly-system-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Nightly test workflow for DDS Router
name: nightly-system-ci

on:
schedule:
- cron: '0 5 * * *'

jobs:

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'
devutils_branch: '0.x'
ddspipe_branch: '0.x'
ddsrouter_branch: '2.x'
custom_version_build: 'v2'
dependencies_artifact_postfix: '_nightly'
ref: '2.x'
secrets: inherit

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'
devutils_branch: '1.x'
ddspipe_branch: '1.x'
ddsrouter_branch: '3.x'
custom_version_build: 'v3'
dependencies_artifact_postfix: '_nightly'
ref: 'main'
secrets: inherit

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Nightly test workflow for DDS Router
name: nightly
name: nightly-ubuntu-ci

on:
schedule:
Expand All @@ -9,7 +9,7 @@ jobs:

reusable_tests_v2:
name: reusable_tests_v2
uses: ./.github/workflows/reusable-workflow.yml
uses: ./.github/workflows/reusable-ubuntu-ci.yml
with:
custom_version_build: 'v2'
dependencies_artifact_postfix: '_nightly'
Expand All @@ -18,7 +18,7 @@ jobs:

reusable_tests_v3:
name: reusable_tests_v3
uses: ./.github/workflows/reusable-workflow.yml
uses: ./.github/workflows/reusable-ubuntu-ci.yml
with:
custom_version_build: 'v3'
dependencies_artifact_postfix: '_nightly'
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/nightly-windows-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Nightly test workflow for DDS Router
name: nightly-windows-ci

on:
schedule:
- cron: '0 5 * * *'

jobs:

reusable_tests_v2:
name: reusable_tests_v2
uses: ./.github/workflows/reusable-windows-ci.yml
with:
custom_version_build: 'v2'
dependencies_artifact_postfix: '_nightly'
ref: '2.x'
secrets: inherit

reusable_tests_v3:
name: reusable_tests_v3
uses: ./.github/workflows/reusable-windows-ci.yml
with:
custom_version_build: 'v3'
dependencies_artifact_postfix: '_nightly'
ref: 'main'
secrets: inherit

Loading

0 comments on commit 58a36bd

Please sign in to comment.