-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate to eProsima CI Signed-off-by: jparisu <[email protected]> * tmp check tsan in ubuntu 20 Signed-off-by: jparisu <[email protected]> * Fix windows 2019 compilation Signed-off-by: jparisu <[email protected]> * Use 20.04 in TSAN Signed-off-by: jparisu <[email protected]> * apply suggestions Signed-off-by: jparisu <[email protected]> * fix time in waiter tests Signed-off-by: jparisu <[email protected]> --------- Signed-off-by: jparisu <[email protected]>
- Loading branch information
Showing
27 changed files
with
285 additions
and
1,107 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
.github/actions/install-eprosima-dependencies-windows/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.
16 changes: 0 additions & 16 deletions
16
.github/actions/install-foonathan-memory-windows/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.
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 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,51 @@ | ||
name: dependencies_ubuntu | ||
description: Common first step for all jobs. Checkout repository, download dependencies and install required packages. | ||
|
||
inputs: | ||
|
||
os: | ||
description: Specify runs-on machine to download specific artifact | ||
required: true | ||
|
||
cmake_build_type: | ||
description: Specify cmake_build_type option to download specific artifact | ||
required: true | ||
|
||
dependencies_artifact_postfix: | ||
description: Specify artifact postfix in case it wants to use a manual one | ||
required: false | ||
default: _nightly | ||
|
||
target_workspace: | ||
description: Specify directory to download dependencies | ||
required: false | ||
default: './install' | ||
|
||
# This must be passed as an argument because actions do not access to workflow secrets: | ||
# Unrecognized named-value: 'secrets'. https://github.com/orgs/community/discussions/27054 | ||
# Pass argument {{ secrets.GITHUB_TOKEN }} from workflow | ||
secret_token: | ||
description: 'Secret token to authenticate the WebRequest so it not get a rate limit error.' | ||
required: false | ||
default: '' | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
|
||
- name: Install Fast DDS dependencies | ||
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@v0 | ||
with: | ||
cmake_build_type: ${{ inputs.cmake_build_type }} | ||
|
||
|
||
# Fast DDS artifact | ||
- name: Download dependencies artifact | ||
uses: eProsima/eProsima-CI/multiplatform/download_dependency@v0 | ||
with: | ||
artifact_name: built_fastdds_${{ inputs.os }}_${{ inputs.cmake_build_type }}${{ inputs.dependencies_artifact_postfix }} | ||
workflow_source: build_fastdds.yml | ||
workflow_source_repository: eProsima/eProsima-CI | ||
target_workspace: ${{ inputs.target_workspace }} | ||
secret_token: ${{ inputs.secret_token }} | ||
workflow_conclusion: completed |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.