-
Notifications
You must be signed in to change notification settings - Fork 906
305 lines (274 loc) · 11.4 KB
/
reusable-windows-ci.yml
File metadata and controls
305 lines (274 loc) · 11.4 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
name: Fast DDS Windows CI reusable workflow
on:
workflow_call:
inputs:
label:
description: 'ID associated to the workflow. Must univocally identify artifacts.'
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
fastdds_branch:
description: 'Branch or tag of Fast DDS repository (https://github.com/eProsima/Fast-DDS)'
required: true
type: string
fastcdr_branch:
description: 'Branch or tag of Fast CDR repository (https://github.com/eProsima/Fast-CDR)'
required: false
type: string
default: 'master'
cmake-config:
description: 'CMake configuration to use'
required: false
type: string
default: 'RelWithDebInfo'
run-tests:
description: 'Run test suite of Fast DDS'
required: false
type: boolean
default: true
defaults:
run:
shell: pwsh
jobs:
fastdds_build:
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
vs-toolset:
- 'v142'
- 'v143'
steps:
- name: Sync eProsima/Fast-DDS repository
uses: eProsima/eProsima-CI/external/checkout@v0
with:
path: src/fastdds
submodules: true
ref: ${{ inputs.fastdds_branch }}
- name: Install Fix Python version
uses: eProsima/eProsima-CI/external/setup-python@v0
with:
python-version: '3.11'
- name: Get minimum supported version of CMake
uses: eProsima/eProsima-CI/external/get-cmake@v0
with:
cmakeVersion: '3.28.6'
- name: Install OpenSSL
uses: eProsima/eprosima-CI/windows/install_openssl@v0
with:
version: '3.1.1'
- name: Update OpenSSL environment variables
run: |
# Update the environment
if (Test-Path -Path $Env:ProgramW6432\OpenSSL)
{
"OPENSSL64_ROOT=$Env:ProgramW6432\OpenSSL" | Out-File $Env:GITHUB_ENV -Append -Encoding OEM
}
elseif (Test-Path -Path $Env:ProgramW6432\OpenSSL-Win)
{
"OPENSSL64_ROOT=$Env:ProgramW6432\OpenSSL-Win" | Out-File $Env:GITHUB_ENV -Append -Encoding OEM
}
elseif (Test-Path -Path $Env:ProgramW6432\OpenSSL-Win64)
{
"OPENSSL64_ROOT=$Env:ProgramW6432\OpenSSL-Win64" | Out-File $Env:GITHUB_ENV -Append -Encoding OEM
}
else
{
Write-Error -Message "Cannot find OpenSSL installation."
exit 1
}
- name: Install colcon
uses: eProsima/eProsima-CI/windows/install_colcon@v0
- name: Install Python dependencies
uses: eProsima/eProsima-CI/windows/install_python_packages@v0
with:
packages: vcstool xmlschema psutil
- name: Get Fast CDR branch
id: get_fastcdr_branch
uses: eProsima/eProsima-CI/ubuntu/get_related_branch_from_repo@v0
with:
remote_repository: eProsima/Fast-CDR
fallback_branch: ${{ inputs.fastcdr_branch }}
- name: Download Fast CDR
uses: eProsima/eProsima-CI/external/checkout@v0
with:
repository: eProsima/Fast-CDR
path: ${{ github.workspace }}/src/fastcdr
ref: ${{ steps.get_fastcdr_branch.outputs.deduced_branch }}
- name: Fetch Fast DDS dependencies
uses: eProsima/eProsima-CI/windows/vcs_import@v0
with:
vcs_repos_file: ${{ github.workspace }}\src\fastdds\fastdds.repos
destination_workspace: src
skip_existing: 'true'
- name: Fetch Fast DDS CI dependencies
uses: eProsima/eProsima-CI/windows/vcs_import@v0
with:
vcs_repos_file: ${{ github.workspace }}\src\fastdds\.github\workflows\config\fastdds_test.repos
destination_workspace: src
skip_existing: 'true'
- name: Build
id: build
continue-on-error: false
uses: eProsima/eProsima-CI/windows/colcon_build@v0
with:
colcon_meta_file: ${{ github.workspace }}\src\fastdds\.github\workflows\config\fastdds_build.meta ${{ github.workspace }}\src\fastdds\.github\workflows\config\fastdds_test.meta
colcon_build_args: ${{ inputs.colcon-args }}
# The following Fast DDS CMake options need to be specified here instead of in the meta files
# because they vary from platform to platform
cmake_args_default: ${{ inputs.cmake-args }} -T ${{ matrix.vs-toolset }} -DTHIRDPARTY_Asio=FORCE -DTHIRDPARTY_TinyXML2=FORCE -DTHIRDPARTY_fastcdr=OFF -DTHIRDPARTY_UPDATE=ON -DCOMPILE_EXAMPLES=ON -DCMAKE_CXX_FLAGS_INIT="/MP /WX"
cmake_build_type: ${{ inputs.cmake-config }}
workspace: ${{ github.workspace }}
- name: Upload build artifacts
if: ${{ inputs.run-tests == true }}
uses: eProsima/eProsima-CI/external/upload-artifact@v0
with:
name: fastdds_build_${{ inputs.label }}_${{ matrix.vs-toolset }}
path: ${{ github.workspace }}
fastdds_test:
needs: fastdds_build
name: fastdds_test (${{ matrix.cmake_build_type }}, ${{ matrix.test_filter }}), ${{ matrix.vs-toolset }}
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
vs-toolset:
- 'v142'
- 'v143'
cmake_build_type:
- ${{ inputs.cmake-config }}
test_filter:
- 'blackbox'
- 'unittest-I'
- 'unittest-II'
- 'examples'
filter_expression_blackbox:
- 'BlackboxTests|ParticipantTests|SecureDiscoverServer|SimpleCommunication|system.'
filter_expression_examples:
- 'example_tests'
filter_expression_unittests_I:
- 'DDSSQLFilterValue'
steps:
- name: Download build artifacts
if: ${{ inputs.run-tests == true }}
uses: eProsima/eProsima-CI/external/download-artifact@v0
with:
name: fastdds_build_${{ inputs.label }}_${{ matrix.vs-toolset }}
path: ${{ github.workspace }}
- name: Update known hosts file for DNS resolver testing
if: ${{ inputs.run-tests == true }}
run: |
$hostfile = "$Env:SystemRoot\system32\drivers" -replace "\\", "/"
$hostfile += "/etc/hosts"
# DNS entries to add
$new_entries = @{
"localhost.test" = "127.0.0.1", "::1"
"www.eprosima.com.test" = "154.56.134.194"
"www.acme.com.test" = "216.58.215.164", "2a00:1450:400e:803::2004"
"www.foo.com.test" = "140.82.121.4", "140.82.121.3"
"acme.org.test" = "ff1e::ffff:efff:1"
}
# Modify the file
$mod = { Param([string]$FilePath, [Hashtable]$Entries )
$entries.GetEnumerator() |
% { $hostname = $_.key; $_.value |
% { "{0,-25} {1}" -f $_, $hostname }} |
Out-File $filepath -Append
}
& $mod -FilePath $hostfile -Entries $new_entries
# Show the result
gc $hostfile
- name: Install Fix Python version
if: ${{ inputs.run-tests == true }}
uses: eProsima/eProsima-CI/external/setup-python@v0
with:
python-version: '3.11'
- name: Get minimum supported version of CMake
if: ${{ inputs.run-tests == true }}
uses: eProsima/eProsima-CI/external/get-cmake@v0
with:
cmakeVersion: '3.28.6'
- name: Install OpenSSL
if: ${{ inputs.run-tests == true }}
uses: eProsima/eprosima-CI/windows/install_openssl@v0
with:
version: '3.1.1'
- name: Update OpenSSL environment variables
if: ${{ inputs.run-tests == true }}
run: |
# Update the environment
if (Test-Path -Path $Env:ProgramW6432\OpenSSL)
{
"OPENSSL64_ROOT=$Env:ProgramW6432\OpenSSL" | Out-File $Env:GITHUB_ENV -Append -Encoding OEM
}
elseif (Test-Path -Path $Env:ProgramW6432\OpenSSL-Win)
{
"OPENSSL64_ROOT=$Env:ProgramW6432\OpenSSL-Win" | Out-File $Env:GITHUB_ENV -Append -Encoding OEM
}
elseif (Test-Path -Path $Env:ProgramW6432\OpenSSL-Win64)
{
"OPENSSL64_ROOT=$Env:ProgramW6432\OpenSSL-Win64" | Out-File $Env:GITHUB_ENV -Append -Encoding OEM
}
else
{
Write-Error -Message "Cannot find OpenSSL installation."
exit 1
}
- name: Install colcon
if: ${{ inputs.run-tests == true }}
uses: eProsima/eProsima-CI/windows/install_colcon@v0
- name: Install Python dependencies
if: ${{ inputs.run-tests == true }}
uses: eProsima/eProsima-CI/windows/install_python_packages@v0
with:
packages: vcstool xmlschema psutil
#Build Windows examples testing docker image
- name: Build with example testing
if: ${{ inputs.run-tests == true && matrix.test_filter == 'examples' }}
continue-on-error: false
uses: eProsima/eProsima-CI/windows/colcon_build@v0
with:
colcon_meta_file: ${{ github.workspace }}\src\fastdds\.github\workflows\config\fastdds_build.meta ${{ github.workspace }}\src\fastdds\.github\workflows\config\fastdds_test.meta
colcon_build_args: ${{ inputs.colcon-args }}
# The following Fast DDS CMake options need to be specified here instead of in the meta files
# because they vary from platform to platform
cmake_args_default: ${{ inputs.cmake-args }} -T ${{ matrix.vs-toolset }} -DTHIRDPARTY_Asio=FORCE -DTHIRDPARTY_TinyXML2=FORCE -DTHIRDPARTY_fastcdr=OFF -DTHIRDPARTY_UPDATE=ON -DFASTDDS_EXAMPLE_TESTS=ON -DCMAKE_CXX_FLAGS_INIT="/MP /WX"
cmake_build_type: ${{ inputs.cmake-config }}
workspace: ${{ github.workspace }}
- name: Test
if: ${{ inputs.run-tests == true }}
id: test
uses: eProsima/eProsima-CI/windows/colcon_test@v0
with:
colcon_meta_file: ${{ github.workspace }}\src\fastdds\.github\workflows\config\fastdds_test.meta
colcon_test_args: ${{ inputs.colcon-args }}
colcon_test_args_default: --event-handlers=console_direct+
ctest_args: >
${{ inputs.ctest-args }}
${{ matrix.test_filter == 'blackbox' && format('-R "{0}"', matrix.filter_expression_blackbox) ||
matrix.test_filter == 'examples' && format('-R "{0}"', matrix.filter_expression_examples) ||
matrix.test_filter == 'unittest-I' && format('-R "{0}" -j 4', matrix.filter_expression_unittests_I) ||
format('-E "{0}|{1}|{2}"', matrix.filter_expression_blackbox, matrix.filter_expression_examples, matrix.filter_expression_unittests_I) }}
packages_names: fastdds
workspace: ${{ github.workspace }}
test_report_artifact: ${{ format('test_report_{0}_{1}_{2}', inputs.label, github.job, join(matrix.*, '_')) }}
- name: Test summary
uses: eProsima/eProsima-CI/windows/junit_summary@v0
if: ${{ !cancelled() && inputs.run-tests == true}}
with:
junit_reports_dir: "${{ steps.test.outputs.ctest_results_path }}"
print_summary: 'True'
show_failed: 'True'
show_disabled: 'False'
show_skipped: 'False'