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

[20786] Build ShapesDemo on Ubuntu Github CI #4678

Merged
merged 3 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 3 additions & 0 deletions .github/workflows/config/ci.meta
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ names:
- "-Dgtest_force_shared_crt=ON"
- "-DBUILD_SHARED_LIBS=ON"
- "-DBUILD_GMOCK=ON"
ShapesDemo:
cmake-args:
- "-DQT_PATH=$GITHUB_WORKSPACE/qt_installation/Qt/5.15.2"
JesusPoderoso marked this conversation as resolved.
Show resolved Hide resolved
23 changes: 23 additions & 0 deletions .github/workflows/reusable-ubuntu-ci.yml
JesusPoderoso marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,29 @@ jobs:
destination_workspace: src
skip_existing: 'true'

# Get Shapes Demo to make sure it keeps compiling
- name: Get Shapes Demo branch
id: get_shapes_demo_branch
uses: eProsima/eProsima-CI/ubuntu/get_related_branch_from_repo@v0
with:
remote_repository: eProsima/ShapesDemo
fallback_branch: ${{ inputs.fastdds-branch || 'master' }}

- name: Download Shapes Demo repo
uses: eProsima/eProsima-CI/external/checkout@v0
with:
repository: eProsima/ShapesDemo
path: src/shapes-demo
ref: ${{ steps.get_shapes_demo_branch.outputs.deduced_branch }}

# Required for Shapes Demo
- name: Install Qt
uses: jurplel/[email protected]
with:
version: '5.15.2'
dir: '${{ github.workspace }}/qt_installation/'
modules: 'qtcharts'

- name: Colcon build
continue-on-error: false
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
Expand Down
Loading