-
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 set ddspipe version in build workflow (#39)
* Manually set ddspipe version in build workflow Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Update documentation Signed-off-by: Raul Sanchez-Mateos <[email protected]> --------- Signed-off-by: Raul Sanchez-Mateos <[email protected]>
- Loading branch information
1 parent
c325821
commit 36d1fb8
Showing
7 changed files
with
324 additions
and
27 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,34 @@ | ||
name: fetch_ddspipe_manual | ||
description: Download eProsima/DDS-Pipe setting the specific version of each repository | ||
|
||
inputs: | ||
|
||
ddspipe_branch: | ||
description: > | ||
Branch, tag or commit of eProsima/DDS-Pipe repository. | ||
Check available branches in https://github.com/eProsima/DDS-Pipe. | ||
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_ddspipe_manual@feature/manual-ddspipe-build | ||
if: runner.os == 'Linux' | ||
with: | ||
ddspipe_branch: ${{ inputs.ddspipe_branch }} | ||
destination_workspace: ${{ inputs.destination_workspace }} | ||
|
||
- name: Run in windows | ||
uses: eProsima/eProsima-CI/windows/fetch_ddspipe_manual@feature/manual-ddspipe-build | ||
if: runner.os == 'Windows' | ||
with: | ||
ddspipe_branch: ${{ inputs.ddspipe_branch }} | ||
destination_workspace: ${{ inputs.destination_workspace }} |
Oops, something went wrong.