Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[21256] Fix issue with Fast DDS and Fast DDS python deduced branches (backport #838) #842

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions .github/workflows/reusable-ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,18 +126,17 @@ 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:
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/fastrtps

- name: Fetch Fast DDS dependencies
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
with:
vcs_repos_file: ${{ github.workspace }}/fastrtps.repos
vcs_repos_file: ${{ github.workspace }}/src/fastrtps/fastrtps.repos
destination_workspace: src
skip_existing: 'true'

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

- name: Obtain Fast DDS Python dependencies
- name: Obtain deduced Fast DDS Python repository content
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 }}
path: ${{ github.workspace }}/src/fastdds_python

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