-
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.
Support Fast CDR v1 and v2 & bump version to 1.3.1 (#70)
* Refs #19760. Coexist fastcdr v1 and v2 Signed-off-by: Ricardo González Moreno <[email protected]> Signed-off-by: EduPonz <[email protected]> * Refs #19760. Improve CI Signed-off-by: Ricardo González Moreno <[email protected]> Signed-off-by: EduPonz <[email protected]> * Refs #19760. Fix swig generated files with fastcdr v1 Signed-off-by: EduPonz <[email protected]> * Refs #19760. Remove old file Signed-off-by: Ricardo González Moreno <[email protected]> Signed-off-by: EduPonz <[email protected]> * Refs #19760. Fix error on generated files Signed-off-by: Ricardo González Moreno <[email protected]> Signed-off-by: EduPonz <[email protected]> * Refs #19760. CI changes Signed-off-by: Ricardo González Moreno <[email protected]> Signed-off-by: EduPonz <[email protected]> * Refs #19760. Support executing test with param --cdr Signed-off-by: Ricardo González Moreno <[email protected]> Signed-off-by: EduPonz <[email protected]> * Refs #19760. Fix ci Signed-off-by: Ricardo González Moreno <[email protected]> Signed-off-by: EduPonz <[email protected]> * Refs #19760. Bump version to 1.3.1 Signed-off-by: EduPonz <[email protected]> * Refs #19760. Pass DCO if commits are GPL signed Signed-off-by: EduPonz <[email protected]> --------- Signed-off-by: Ricardo González Moreno <[email protected]> Signed-off-by: EduPonz <[email protected]> Co-authored-by: EduPonz <[email protected]>
- Loading branch information
Showing
49 changed files
with
39,041 additions
and
6,191 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,23 @@ | ||
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/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 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,2 @@ | ||
require: | ||
members: false |
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
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,3 @@ | ||
|
||
def pytest_addoption(parser): | ||
parser.addoption("--cdr", action="store", default="v2") |
Oops, something went wrong.