-
Notifications
You must be signed in to change notification settings - Fork 4
486 lines (397 loc) · 17.6 KB
/
pipeline.yml
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
name: Build Pipeline
on:
push:
branches:
- master
- 'dependabot/**'
- 'releases/**'
- 'feat/**'
- 'feature/**'
- 'fix/**'
env:
PROJECT_NAME: Saucery
SOLN_FILE: Saucery.sln # full path to your solution file
UT_DIR: Saucery.Core.Tests
NUNIT_INT_DIR: Merlin.NUnit
XUNIT_INT_DIR: Merlin.XUnit
TUNIT_INT_DIR: Merlin.TUnit
NUNIT_RD_INT_DIR: Merlin.NUnit.RealDevices
XUNIT_RD_INT_DIR: Merlin.XUnit.RealDevices
TUNIT_RD_INT_DIR: Merlin.TUnit.RealDevices
UT_PROJECT: Saucery.Core.Tests/Saucery.Core.Tests.csproj # full path to your unit test project file
M_NUNIT_PROJECT: Merlin.NUnit/Merlin.NUnit.csproj # full path to nunit internal integration test project file
M_RD_NUNIT_PROJECT: Merlin.NUnit.RealDevices/Merlin.NUnit.RealDevices.csproj # full path to nunit internal integration test project file
EM_NUNIT_PROJECT: ExternalMerlin.NUnit/ExternalMerlin.NUnit.csproj # full path to nunit external integration test project file
EM_RD_NUNIT_PROJECT: ExternalMerlin.NUnit.RealDevices/ExternalMerlin.NUnit.RealDevices.csproj # full path to nunit external integration test project file
M_XUNIT_PROJECT: Merlin.XUnit/Merlin.XUnit.csproj # full path to xunit internal integration test project file
M_RD_XUNIT_PROJECT: Merlin.XUnit.RealDevices/Merlin.XUnit.RealDevices.csproj # full path to xunit internal integration test project file
EM_XUNIT_PROJECT: ExternalMerlin.XUnit/ExternalMerlin.XUnit.csproj # full path to xunit external integration test project file
EM_RD_XUNIT_PROJECT: ExternalMerlin.XUnit.RealDevices/ExternalMerlin.XUnit.RealDevices.csproj # full path to xunit external integration test project file
M_TUNIT_PROJECT: Merlin.TUnit/Merlin.TUnit.csproj # full path to xunit internal integration test project file
M_RD_TUNIT_PROJECT: Merlin.TUnit.RealDevices/Merlin.TUnit.RealDevices.csproj # full path to xunit internal integration test project file
EM_TUNIT_PROJECT: ExternalMerlin.TUnit/ExternalMerlin.TUnit.csproj # full path to xunit external integration test project file
EM_RD_TUNIT_PROJECT: ExternalMerlin.TUnit.RealDevices/ExternalMerlin.TUnit.RealDevices.csproj # full path to xunit external integration test project file
SAUCE_USER_NAME: ${{ secrets.SAUCE_USER_NAME }}
SAUCE_API_KEY: ${{ secrets.SAUCE_API_KEY }}
CONFIG: Release
APP_PACKAGE_PATH: 'published' # set this to the path to your web app project, defaults to the repository root
COVERAGE_FORMAT: opencover
UNIT_COVERAGE_FILENAME: 'opencover.unit.xml'
NUNIT_INTEGRATION_COVERAGE_FILENAME: 'opencover.nunit.integration.xml'
XUNIT_INTEGRATION_COVERAGE_FILENAME: 'opencover.xunit.integration.xml'
TUNIT_INTEGRATION_COVERAGE_FILENAME: 'opencover.tunit.integration.xml'
NUNIT_RD_INTEGRATION_COVERAGE_FILENAME: 'opencover.nunit.realdevice.integration.xml'
XUNIT_RD_INTEGRATION_COVERAGE_FILENAME: 'opencover.xunit.realdevice.integration.xml'
TUNIT_RD_INTEGRATION_COVERAGE_FILENAME: 'opencover.tunit.realdevice.integration.xml'
COVERAGE_THRESHOLD: 80
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/9.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
## Run code analysis for all projects/solutions, such that code analysis violations break the build.
#- name: Run .NET Code Analysis
# uses: dotnet/code-analysis@v1
# id: code-analysis
# with:
# build-breaking: true
- name: Run Unit Tests
uses: b3b00/coverlet-action@11.9
with:
testProject: ${{ env.UT_PROJECT }}
output: ${{ env.UNIT_COVERAGE_FILENAME }}
outputFormat: ${{ env.COVERAGE_FORMAT }}
threshold: ${{ env.COVERAGE_THRESHOLD }}
excludes: '[Saucery.Core.Tests]Tests.*,[Saucery]AutoGeneratedProgram,[Saucery]Saucery.Selenium.*,[Saucery]Saucery.Driver.SauceryAndroid*,[Saucery]Saucery.Driver.SauceryIOS*,[Saucery]Saucery.Tests.SauceryAndroid*,[Saucery]Saucery.Tests.SauceryIOS*,[Saucery]Saucery.DataSources.EnvCompositor*,[Saucery]Saucery.Util.WebControl'
- name: Publish Artifacts
uses: actions/upload-artifact@v4
with:
name: unit-test-results
path: ${{ env.UT_DIR }}/${{ env.UNIT_COVERAGE_FILENAME }}
xunit-integration-tests:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run XUnit Integration Tests
uses: b3b00/coverlet-action@11.9
with:
testProject: ${{ env.M_XUNIT_PROJECT }}
output: ${{ env.XUNIT_INTEGRATION_COVERAGE_FILENAME }}
outputFormat: ${{ env.COVERAGE_FORMAT }}
#threshold: ${{ env.COVERAGE_THRESHOLD }}
excludes: '[Merlin.XUnit]Tests.*'
- name: Publish Artifacts
uses: actions/upload-artifact@v4
with:
name: xunit-integration-test-results
path: ${{ env.XUNIT_INT_DIR }}/${{ env.XUNIT_INTEGRATION_COVERAGE_FILENAME }}
nunit-integration-tests:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run NUnit Integration Tests
uses: b3b00/coverlet-action@11.9
with:
testProject: ${{ env.M_NUNIT_PROJECT }}
output: ${{ env.NUNIT_INTEGRATION_COVERAGE_FILENAME }}
outputFormat: ${{ env.COVERAGE_FORMAT }}
#threshold: ${{ env.COVERAGE_THRESHOLD }}
excludes: '[Merlin.NUnit]Tests.*'
- name: Publish Artifacts
uses: actions/upload-artifact@v4
with:
name: nunit-integration-test-results
path: ${{ env.NUNIT_INT_DIR }}/${{ env.NUNIT_INTEGRATION_COVERAGE_FILENAME }}
nunit-real-integration-tests:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run NUnit Integration Tests
uses: b3b00/coverlet-action@11.9
with:
testProject: ${{ env.M_RD_NUNIT_PROJECT }}
output: ${{ env.NUNIT_RD_INTEGRATION_COVERAGE_FILENAME }}
outputFormat: ${{ env.COVERAGE_FORMAT }}
#threshold: ${{ env.COVERAGE_THRESHOLD }}
excludes: '[Merlin.NUnit.RealDevices]Tests.*'
- name: Publish Artifacts
uses: actions/upload-artifact@v4
with:
name: nunit-real-integration-test-results
path: ${{ env.NUNIT_RD_INT_DIR }}/${{ env.NUNIT_RD_INTEGRATION_COVERAGE_FILENAME }}
xunit-real-integration-tests:
runs-on: ubuntu-latest
# needs: xunit-integration-tests
needs: build
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run XUnit Real Integration Tests
uses: b3b00/coverlet-action@11.9
with:
testProject: ${{ env.M_RD_XUNIT_PROJECT }}
output: ${{ env.XUNIT_RD_INTEGRATION_COVERAGE_FILENAME }}
outputFormat: ${{ env.COVERAGE_FORMAT }}
#threshold: ${{ env.COVERAGE_THRESHOLD }}
excludes: '[Merlin.XUnit.RealDevice]Tests.*'
- name: Publish Artifacts
uses: actions/upload-artifact@v4
with:
name: xunit-real-integration-test-results
path: ${{ env.XUNIT_RD_INT_DIR }}/${{ env.XUNIT_RD_INTEGRATION_COVERAGE_FILENAME }}
xunit-external-tests:
runs-on: ubuntu-latest
needs: nunit-real-integration-tests
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run External XUnit Integration Tests
run: dotnet test -c ${{ env.CONFIG }} ${{ env.EM_XUNIT_PROJECT }}
nunit-external-tests:
runs-on: ubuntu-latest
needs: nunit-real-integration-tests
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run External NUnit Integration Tests
run: dotnet test -c ${{ env.CONFIG }} ${{ env.EM_NUNIT_PROJECT }}
xunit-real-external-tests:
runs-on: ubuntu-latest
needs: xunit-real-integration-tests
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run External XUnit Real Integration Tests
run: dotnet test -c ${{ env.CONFIG }} ${{ env.EM_RD_XUNIT_PROJECT }}
nunit-real-external-tests:
runs-on: ubuntu-latest
needs: xunit-real-integration-tests
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run External NUnit Real Integration Tests
run: dotnet test -c ${{ env.CONFIG }} ${{ env.EM_RD_NUNIT_PROJECT }}
tunit-integration-tests:
runs-on: ubuntu-latest
needs: [nunit-integration-tests,
xunit-integration-tests,
xunit-external-tests,
nunit-external-tests,
xunit-real-external-tests,
nunit-real-external-tests]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run TUnit Integration Tests
run: dotnet test -c ${{ env.CONFIG }} ${{ env.M_TUNIT_PROJECT }}
# - name: Run TUnit Integration Tests
# uses: b3b00/coverlet-action@11.9
# with:
# testProject: ${{ env.M_TUNIT_PROJECT }}
# output: ${{ env.TUNIT_INTEGRATION_COVERAGE_FILENAME }}
# outputFormat: ${{ env.COVERAGE_FORMAT }}
# threshold: ${{ env.COVERAGE_THRESHOLD }}
# excludes: '[Merlin.TUnit]Tests.*'
# - name: Publish Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: tunit-integration-test-results
# path: ${{ env.TUNIT_INT_DIR }}/${{ env.TUNIT_INTEGRATION_COVERAGE_FILENAME }}
tunit-real-integration-tests:
runs-on: ubuntu-latest
needs: [nunit-integration-tests,
xunit-integration-tests,
xunit-external-tests,
nunit-external-tests,
xunit-real-external-tests,
nunit-real-external-tests]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run TUnit Real Integration Tests
run: dotnet test -c ${{ env.CONFIG }} ${{ env.M_RD_TUNIT_PROJECT }}
# - name: Run TUnit Integration Tests
# uses: b3b00/coverlet-action@11.9
# with:
# testProject: ${{ env.M_TUNIT_PROJECT }}
# output: ${{ env.TUNIT_RD_INTEGRATION_COVERAGE_FILENAME }}
# outputFormat: ${{ env.COVERAGE_FORMAT }}
# threshold: ${{ env.COVERAGE_THRESHOLD }}
# excludes: '[Merlin.TUnit]Tests.*'
# - name: Publish Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: tunit-integration-test-results
# path: ${{ env.TUNIT_INT_DIR }}/${{ env.TUNIT_RD_INTEGRATION_COVERAGE_FILENAME }}
tunit-external-tests:
runs-on: ubuntu-latest
needs: [tunit-real-integration-tests,
tunit-integration-tests]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run External TUnit Integration Tests
run: dotnet test -c ${{ env.CONFIG }} ${{ env.EM_TUNIT_PROJECT }}
tunit-real-external-tests:
runs-on: ubuntu-latest
needs: [tunit-real-integration-tests,
tunit-integration-tests]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
# Check for latest at link at .NET 9 download page (https://dotnet.microsoft.com/download/dotnet/8.0)
dotnet-version: 9.0.x
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}
- name: Run External TUnit Real Integration Tests
run: dotnet test -c ${{ env.CONFIG }} ${{ env.EM_RD_TUNIT_PROJECT }}
generate-report:
runs-on: ubuntu-latest
needs: [tunit-external-tests,
tunit-real-external-tests]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Download unit-test results
uses: actions/download-artifact@v4
with:
name: unit-test-results
- name: Download nunit-integration-test results
uses: actions/download-artifact@v4
with:
name: nunit-integration-test-results
- name: Download xunit-integration-test results
uses: actions/download-artifact@v4
with:
name: xunit-integration-test-results
- name: Download nunit-real-integration-test results
uses: actions/download-artifact@v4
with:
name: nunit-real-integration-test-results
- name: Download xunit-real-integration-test results
uses: actions/download-artifact@v4
with:
name: xunit-real-integration-test-results
- name: Present working directory
run: pwd
# - name: Display structure of downloaded files
# run: ls -R
- name: ReportGenerator
uses: danielpalme/ReportGenerator-GitHub-Action@5.4.3
with:
# REQUIRED # The coverage reports that should be parsed (separated by semicolon). Globbing is supported.
reports: ${{ env.UNIT_COVERAGE_FILENAME }};
${{ env.NUNIT_INTEGRATION_COVERAGE_FILENAME }};
${{ env.XUNIT_INTEGRATION_COVERAGE_FILENAME }};
${{ env.XUNIT_RD_INTEGRATION_COVERAGE_FILENAME }};
${{ env.NUNIT_RD_INTEGRATION_COVERAGE_FILENAME }};
${{ env.TUNIT_INTEGRATION_COVERAGE_FILENAME }}
targetdir: 'coveragereport' # REQUIRED # The directory where the generated report should be saved.
reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary
- name: Upload coverage report artifact
uses: actions/upload-artifact@v4
with:
name: CoverageReport # Artifact name
path: coveragereport # Directory containing files to upload
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
- name: Bump version and push tag
if: ${{ (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master') && success() }}
id: tag_version
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}