-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Manually build dev-utils artifact (#38)
* Manually set dev-utils version in build workflow Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Run fastdds build in same workflow as dev-utils Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Select fastdds build depending on input params Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Extend workflow description and fix dev-utils branch Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Unzip downloaded artifact Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Fix artifact destination folder Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Update branch to main Signed-off-by: Raul Sanchez-Mateos <[email protected]> --------- Signed-off-by: Raul Sanchez-Mateos <[email protected]>
- Loading branch information
1 parent
d7cdcfb
commit c325821
Showing
7 changed files
with
311 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: 'download-artifact' | ||
description: 'https://github.com/actions/upload-artifact/blob/main/action.yml' | ||
|
||
inputs: | ||
|
||
name: | ||
description: 'Artifact name' | ||
required: false | ||
|
||
path: | ||
description: 'Destination path' | ||
required: false | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: ${{ inputs.name }} | ||
path: ${{ inputs.path }} |
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,34 @@ | ||
name: fetch_dev_utils_manual | ||
description: Download eProsima/dev-utils setting the specific version of each repository | ||
|
||
inputs: | ||
|
||
dev_utils_branch: | ||
description: > | ||
Branch, tag or commit of eProsima/dev-utils repository. | ||
Check available branches in https://github.com/eProsima/dev-utils. | ||
required: false | ||
default: master | ||
|
||
destination_workspace: | ||
description: 'Workspace where the repositories are downloaded' | ||
required: false | ||
default: '${{ github.workspace }}' | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
|
||
- name: Run in ubuntu | ||
uses: eProsima/eProsima-CI/ubuntu/fetch_dev_utils_manual@main | ||
if: runner.os == 'Linux' | ||
with: | ||
dev_utils_branch: ${{ inputs.dev_utils_branch }} | ||
destination_workspace: ${{ inputs.destination_workspace }} | ||
|
||
- name: Run in windows | ||
uses: eProsima/eProsima-CI/windows/fetch_dev_utils_manual@main | ||
if: runner.os == 'Windows' | ||
with: | ||
dev_utils_branch: ${{ inputs.dev_utils_branch }} | ||
destination_workspace: ${{ inputs.destination_workspace }} |
Oops, something went wrong.