-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ricardo González Moreno <[email protected]>
- Loading branch information
Showing
2 changed files
with
54 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: 'fetch-fastdds_python-repos' | ||
description: 'Fetch Fast DDS Python dependencies' | ||
inputs: | ||
foonathan-memory-vendor-branch: | ||
description: 'foonathan_memory_vendor branch to be used' | ||
required: true | ||
fastcdr-branch: | ||
description: 'Fast-CDR branch to be used' | ||
required: true | ||
fastdds-branch: | ||
description: 'Fast-DDS branch to be used' | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- id: fetch-fastdds_python-repos | ||
shell: bash | ||
run: | | ||
cd src | ||
git clone https://github.com/google/googletest.git --branch release-1.11.0 | ||
git clone https://github.com/eProsima/foonathan_memory_vendor.git --branch ${{ inputs.foonathan-memory-vendor-branch }} | ||
git clone https://github.com/eProsima/Fast-CDR.git --branch ${{ inputs.fastcdr-branch }} | ||
git clone https://github.com/eProsima/Fast-DDS.git --branch ${{ inputs.fastdds-branch }} | ||
cd .. |
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