Skip to content

Commit

Permalink
Fix issue with Fast DDS and Fast DDS python deduced branches (#838)
Browse files Browse the repository at this point in the history
Signed-off-by: JesusPoderoso <[email protected]>
(cherry picked from commit 6a53b9e)

# Conflicts:
#	.github/workflows/reusable-ubuntu-ci.yml
  • Loading branch information
JesusPoderoso authored and mergify[bot] committed Jul 2, 2024
1 parent cd9d7bd commit fc2b6f4
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/reusable-ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,18 +126,28 @@ jobs:
remote_repository: eProsima/Fast-DDS
fallback_branch: ${{ inputs.fastdds-branch }}

- name: Obtain Fast DDS dependencies
uses: eProsima/eProsima-CI/multiplatform/get_file_from_repo@v0
- name: Obtain deduced Fast DDS repository content
uses: eProsima/eProsima-CI/external/checkout@v0
with:
<<<<<<< HEAD
source_repository_branch: ${{ steps.get_fastdds_branch.outputs.deduced_branch }}
source_repository: eProsima/Fast-DDS
file_name: fastrtps.repos
file_result: ${{ github.workspace }}/fastrtps.repos
=======
repository: eProsima/Fast-DDS
ref: ${{ steps.get_fastdds_branch.outputs.deduced_branch }}
path: ${{ github.workspace }}/src/fastdds
>>>>>>> 6a53b9e (Fix issue with Fast DDS and Fast DDS python deduced branches (#838))

- name: Fetch Fast DDS dependencies
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
with:
<<<<<<< HEAD
vcs_repos_file: ${{ github.workspace }}/fastrtps.repos
=======
vcs_repos_file: ${{ github.workspace }}/src/fastdds/fastdds.repos
>>>>>>> 6a53b9e (Fix issue with Fast DDS and Fast DDS python deduced branches (#838))
destination_workspace: src
skip_existing: 'true'

Expand All @@ -148,12 +158,21 @@ jobs:
remote_repository: eProsima/Fast-DDS-python
fallback_branch: ${{ inputs.fastdds-python-branch }}

<<<<<<< HEAD
- name: Obtain Fast DDS Python dependencies
uses: eProsima/eProsima-CI/external/checkout@v0
with:
path: src/fastdds_python
repository: eProsima/Fast-DDS-python
ref: ${{ steps.get_fastdds_python_branch.outputs.deduced_branch }}
=======
- name: Obtain deduced Fast DDS Python repository content
uses: eProsima/eProsima-CI/external/checkout@v0
with:
repository: eProsima/Fast-DDS-python
ref: ${{ steps.get_fastdds_python_branch.outputs.deduced_branch }}
path: ${{ github.workspace }}/src/fastdds_python
>>>>>>> 6a53b9e (Fix issue with Fast DDS and Fast DDS python deduced branches (#838))

- name: Fetch Fast DDS Docs CI dependencies
if: ${{ inputs.run-tests == true }}
Expand Down

0 comments on commit fc2b6f4

Please sign in to comment.