-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Fast DDS Monitor CI to use eProsima-CI utilities (#210)
* Refs #21585: Migrate CI to eProsima-CI Signed-off-by: JesusPoderoso <[email protected]> * Refs #21585: Icrease sphinx versions to avoid CI fail in ubuntu tests Signed-off-by: JesusPoderoso <[email protected]> * Refs #21585: Update CI actions Signed-off-by: JesusPoderoso <[email protected]> * Refs #21585: Restore python packages instead of requirements Signed-off-by: JesusPoderoso <[email protected]> * Refs #21585: Fix windows build Signed-off-by: JesusPoderoso <[email protected]> * Refs #21585: Set documentation as a separate job Signed-off-by: JesusPoderoso <[email protected]> * Refs #21585: Set explicit artifact names Signed-off-by: JesusPoderoso <[email protected]> * Refs #21585: Add mirror workflow Signed-off-by: JesusPoderoso <[email protected]> * Refs #21585: Update branch references in fastdds_monitor.repos Signed-off-by: JesusPoderoso <[email protected]> --------- Signed-off-by: JesusPoderoso <[email protected]>
- Loading branch information
1 parent
48d90a1
commit 7643942
Showing
13 changed files
with
410 additions
and
476 deletions.
There are no files selected for viewing
10 changes: 0 additions & 10 deletions
10
.github/actions/fetch-fastdds-statistics-backend-repos/action.yml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,57 @@ | ||
{ | ||
"names": | ||
{ | ||
"foonathan_memory": | ||
{ | ||
"cmake-args": | ||
[ | ||
"-DCMAKE_CXX_FLAGS='/WX /EHsc'", | ||
"-Ax64", | ||
"-T host=x64", | ||
"-DBUILD_SHARED_LIBS=OFF", | ||
"-DFOONATHAN_MEMORY_BUILD_TOOLS=ON", | ||
"-DCMAKE_POSITION_INDEPENDENT_CODE=ON", | ||
"-DFOONATHAN_MEMORY_BUILD_TESTS=OFF" | ||
] | ||
}, | ||
|
||
"fastcdr": | ||
{ | ||
"cmake-args": | ||
[ | ||
"-DCMAKE_CXX_FLAGS='/WX /EHsc'", | ||
"-Ax64", | ||
"-T host=x64" | ||
] | ||
}, | ||
|
||
"fastrtps": | ||
{ | ||
"cmake-args": | ||
[ | ||
"-DCMAKE_CXX_FLAGS='/WX /EHsc'", | ||
"-Ax64", | ||
"-T host=x64", | ||
"-DFASTDDS_STATISTICS=ON", | ||
"-DTHIRDPARTY=ON", | ||
"-DSECURITY=ON", | ||
"-DCOMPILE_EXAMPLES=OFF", | ||
"-DEPROSIMA_BUILD_TESTS=OFF", | ||
"-DINTERNAL_DEBUG=ON" | ||
] | ||
}, | ||
|
||
"fastdds_monitor": | ||
{ | ||
"cmake-args": | ||
[ | ||
"-DCMAKE_CXX_FLAGS='/WX /EHsc'", | ||
"-Ax64", | ||
"-T host=x64", | ||
"-DBUILD_MOCK=ON", | ||
"-DBUILD_APP_TESTS=ON", | ||
"-DQT_PATH=$GITHUB_WORKSPACE/qt_installation/Qt/5.15.2" | ||
] | ||
}, | ||
} | ||
} |
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,24 @@ | ||
# .github/workflows/mirror.yml | ||
name: Mirror | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
mirror_job: | ||
runs-on: ubuntu-latest | ||
name: Mirror main branch to API & ABI compatible minor version branches | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
dest_branch: | ||
- '3.x' | ||
steps: | ||
- name: Mirror action step | ||
id: mirror | ||
uses: eProsima/eProsima-CI/external/mirror-branch-action@v0 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
source: 'main' | ||
dest: ${{ matrix.dest_branch }} |
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,25 @@ | ||
# Nightly test workflow for Fast DDS Monitor | ||
name: nightly | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 5 * * *' | ||
|
||
jobs: | ||
reusable_tests: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- fastdds_ref: 'v2' | ||
monitor_ref: '2.x' | ||
- fastdds_ref: 'v3' | ||
monitor_ref: 'main' | ||
name: reusable_tests | ||
uses: ./.github/workflows/reusable-workflow.yml | ||
with: | ||
custom_version_build: ${{ matrix.version.fastdds_ref }} | ||
dependencies_artifact_postfix: '_nightly' | ||
ref: ${{ matrix.version.monitor_ref }} | ||
secrets: inherit |
Oops, something went wrong.