-
Notifications
You must be signed in to change notification settings - Fork 12
158 lines (144 loc) · 5.22 KB
/
Copy pathreusable-ubuntu-ci.yml
File metadata and controls
158 lines (144 loc) · 5.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
name: Shapes Demo Ubuntu CI reusable workflow
on:
workflow_call:
inputs:
os-version:
description: 'The OS image for the workflow'
required: false
default: 'ubuntu-22.04'
type: string
label:
description: 'ID associated to the workflow'
required: true
type: string
colcon-args:
description: 'Extra arguments for colcon cli'
required: false
type: string
cmake-args:
description: 'Extra arguments for cmake cli'
required: false
type: string
ctest-args:
description: 'Extra arguments for ctest cli'
required: false
type: string
shapes-demo-branch:
description: 'Branch or tag of Shapes Demo repository'
required: true
type: string
fastdds-branch:
description: 'Branch or tag of Fast DDS repository'
required: true
type: string
run-build:
description: 'Build Shapes Demo (CI skipped otherwise)'
required: false
type: boolean
default: true
use-ccache:
description: 'Use CCache to speed up the build'
required: false
type: boolean
default: false
env:
colcon-build-default-cmake-args: '-DCMAKE_CXX_FLAGS="-Werror -Wall -Wextra -Wpedantic -Wunused-value -Woverloaded-virtual"'
defaults:
run:
shell: bash
jobs:
shapes_demo_build:
runs-on: ${{ inputs.os-version }}
strategy:
fail-fast: false
matrix:
cmake-build-type:
- 'RelWithDebInfo'
steps:
- name: Add ci-pending label if PR
if: ${{ inputs.run-build == true && github.event_name == 'pull_request' }}
uses: eProsima/eProsima-CI/external/add_labels@v0
with:
labels: ci-pending
number: ${{ github.event.number }}
repo: eProsima/ShapesDemo
- name: Sync eProsima/ShapesDemo repository
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/external/checkout@v0
with:
path: src/ShapesDemo
ref: ${{ inputs.shapes-demo-branch }}
- name: Install Fix Python version
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/external/setup-python@v0
with:
python-version: '3.11'
- name: Get minimum supported version of CMake
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/external/get-cmake@v0
with:
cmakeVersion: '3.22.6'
- name: Install apt dependencies
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/ubuntu/install_apt_packages@v0
with:
packages: libasio-dev libtinyxml2-dev libssl-dev
update: false
upgrade: false
- name: Install colcon
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/ubuntu/install_colcon@v0
- name: Install Python dependencies
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/multiplatform/install_python_packages@v0
with:
packages: vcstool xmlschema
upgrade: false
# Do not setup python as it will internally modify the pythonLocation env variable
# and we want to use a fix version
- name: Install Qt
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/external/install_qt@v0
with:
version: '6.4.2'
arch: 'gcc_64'
dir: '/opt/qt_installation/'
setup-python: 'false'
- name: Setup CCache
if: ${{ inputs.run-build == true && inputs.use-ccache == true }}
uses: eProsima/eProsima-CI/external/setup-ccache-action@v0
with:
api_token: ${{ secrets.GITHUB_TOKEN }}
- name: Get Fast DDS branch
id: get_fastdds_branch
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/ubuntu/get_related_branch_from_repo@v0
with:
remote_repository: eProsima/Fast-DDS
fallback_branch: ${{ inputs.fastdds-branch }}
- name: Download Fast DDS repo
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/external/checkout@v0
with:
repository: eProsima/Fast-DDS
path: src/fastdds
ref: ${{ steps.get_fastdds_branch.outputs.deduced_branch }}
- name: Fetch Fast DDS dependencies
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
with:
vcs_repos_file: ${{ github.workspace }}/src/fastdds/fastdds.repos
destination_workspace: src
skip_existing: 'true'
- name: Colcon build
continue-on-error: false
if: ${{ inputs.run-build == true }}
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
with:
colcon_meta_file: ${{ github.workspace }}/src/ShapesDemo/.github/workflows/config/build.meta
colcon_build_args: ${{ inputs.colcon-args }}
colcon_build_args_default: --event-handlers=console_direct+
cmake_args: ${{ inputs.cmake-args }}
cmake_args_default: ${{ env.colcon-build-default-cmake-args }}
cmake_build_type: ${{ matrix.cmake-build-type }}
workspace: ${{ github.workspace }}