-
Notifications
You must be signed in to change notification settings - Fork 73
492 lines (455 loc) · 19.5 KB
/
Copy pathrust.yml
File metadata and controls
492 lines (455 loc) · 19.5 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
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
487
488
489
490
491
492
name: Rust
on:
push:
branches: [ "main", "release/*" ]
pull_request:
branches: [ "main", "release/*" ]
paths-ignore:
- "docs/**"
- "*.md"
- ".vscode/*.json"
- ".github/ISSUE_TEMPLATE/**"
env:
CARGO_TERM_COLOR: always
defaults:
run:
shell: pwsh
jobs:
docs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.platform}}
steps:
- uses: actions/checkout@v5
- name: Add WinGet links to PATH
if: matrix.platform == 'windows-latest'
run: |
"$env:LOCALAPPDATA\\Microsoft\\WinGet\\Links" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_PATH
- name: Install prerequisites
run: ./build.ps1 -SkipBuild -Clippy -Verbose
- name: Generate documentation
run: ./build.ps1 -RustDocs -Verbose
- name: Test documentation
run: |-
$testParams = @{
SkipBuild = $true
RustDocs = $true
Test = $true
ExcludeRustTests = $true
ExcludePesterTests = $true
Verbose = $true
}
./build.ps1 @testParams
linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install prerequisites
run: ./build.ps1 -SkipBuild -Clippy -Verbose
- name: Build and test with code coverage
run: ./build.ps1 -Clippy -Test -CodeCoverage -ExcludePesterTests -Verbose
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: linux-coverage
path: lcov.info
if-no-files-found: ignore
- name: Prepare build artifact
run: tar -cvf bin.tar bin/
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: linux-bin
path: bin.tar
linux-pester:
needs: linux-build
strategy:
fail-fast: false
matrix:
group: [dsc, adapters, extensions, resources]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: linux-bin
- name: Expand build artifact
run: tar -xvf bin.tar
- name: Install llvm-tools for coverage
run: rustup component add llvm-tools-preview
- name: Set coverage profile environment
id: coverage-env
run: |-
$profDir = New-Item -ItemType Directory -Path (Join-Path ([System.IO.Path]::GetTempPath()) "dsc-pester-cov-$([System.Guid]::NewGuid().ToString('N'))") -Force
$profPattern = Join-Path $profDir.FullName '%m_%p.profraw'
"LLVM_PROFILE_FILE=$profPattern" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_ENV
"prof_dir=$($profDir.FullName)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
- name: Test ${{matrix.group}}
run: |-
$params = @{
SkipBuild = $true
Test = $true
ExcludeRustTests = $true
Verbose = $true
}
./build.ps1 @params -PesterTestGroup ${{matrix.group}}
- name: Generate coverage report
if: always()
run: |-
Import-Module ./helpers.build.psm1 -Force
$binPath = Get-ArtifactDirectoryPath | Select-Object -ExpandProperty Bin
$exportParams = @{
BinDirectory = $binPath
ProfileDirectory = '${{ steps.coverage-env.outputs.prof_dir }}'
OutputPath = 'pester-lcov.info'
Verbose = $true
}
Export-PesterCodeCoverageReport @exportParams
- name: Clean up coverage temp data
if: always()
run: |-
$profDir = '${{ steps.coverage-env.outputs.prof_dir }}'
if (Test-Path $profDir) {
Remove-Item -Path $profDir -Recurse -Force
Write-Host "Cleaned up temp coverage data: $profDir"
}
- name: Upload coverage data
if: always()
uses: actions/upload-artifact@v4
with:
name: linux-pester-${{matrix.group}}-coverage
path: pester-lcov.info
if-no-files-found: ignore
macos-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install prerequisites
run: ./build.ps1 -SkipBuild -Clippy -Verbose
- name: Build and test with code coverage
run: ./build.ps1 -Clippy -Test -CodeCoverage -ExcludePesterTests -Verbose
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: macos-coverage
path: lcov.info
if-no-files-found: ignore
- name: Prepare build artifact
run: tar -cvf bin.tar bin/
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: macos-bin
path: bin.tar
macos-pester:
needs: macos-build
strategy:
fail-fast: false
matrix:
group: [dsc, adapters, extensions, resources]
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: macos-bin
- name: Expand build artifact
run: tar -xvf bin.tar
- name: Install llvm-tools for coverage
run: rustup component add llvm-tools-preview
- name: Set coverage profile environment
id: coverage-env
run: |-
$profDir = New-Item -ItemType Directory -Path (Join-Path ([System.IO.Path]::GetTempPath()) "dsc-pester-cov-$([System.Guid]::NewGuid().ToString('N'))") -Force
$profPattern = Join-Path $profDir.FullName '%m_%p.profraw'
"LLVM_PROFILE_FILE=$profPattern" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_ENV
"prof_dir=$($profDir.FullName)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
- name: Test ${{matrix.group}}
run: |-
$params = @{
SkipBuild = $true
Test = $true
ExcludeRustTests = $true
Verbose = $true
}
./build.ps1 @params -PesterTestGroup ${{matrix.group}}
- name: Generate coverage report
if: always()
run: |-
Import-Module ./helpers.build.psm1 -Force
$binPath = Get-ArtifactDirectoryPath | Select-Object -ExpandProperty Bin
$exportParams = @{
BinDirectory = $binPath
ProfileDirectory = '${{ steps.coverage-env.outputs.prof_dir }}'
OutputPath = 'pester-lcov.info'
Verbose = $true
}
Export-PesterCodeCoverageReport @exportParams
- name: Clean up coverage temp data
if: always()
run: |-
$profDir = '${{ steps.coverage-env.outputs.prof_dir }}'
if (Test-Path $profDir) {
Remove-Item -Path $profDir -Recurse -Force
Write-Host "Cleaned up temp coverage data: $profDir"
}
- name: Upload coverage data
if: always()
uses: actions/upload-artifact@v4
with:
name: macos-pester-${{matrix.group}}-coverage
path: pester-lcov.info
if-no-files-found: ignore
# Windows
windows-build:
runs-on: windows-latest
steps:
- name: Add WinGet links to PATH
run: |
"$env:LOCALAPPDATA\\Microsoft\\WinGet\\Links" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_PATH
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install prerequisites
run: ./build.ps1 -SkipBuild -Clippy -Verbose
- name: Build and test with code coverage
run: ./build.ps1 -Clippy -Test -CodeCoverage -ExcludePesterTests -Verbose
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: windows-coverage
path: lcov.info
if-no-files-found: ignore
- name: List bin folder files
run: Get-ChildItem bin
- name: Prepare build artifact
run: tar -cvf bin.tar bin
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: windows-bin
path: bin.tar
windows-pester:
needs: windows-build
strategy:
fail-fast: false
matrix:
group: [dsc, adapters, extensions, resources]
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: windows-bin
- name: Expand build artifact
run: tar -xvf bin.tar
- name: Install llvm-tools for coverage
run: rustup component add llvm-tools-preview
- name: Set coverage profile environment
id: coverage-env
run: |-
$profDir = New-Item -ItemType Directory -Path (Join-Path ([System.IO.Path]::GetTempPath()) "dsc-pester-cov-$([System.Guid]::NewGuid().ToString('N'))") -Force
$profPattern = Join-Path $profDir.FullName '%m_%p.profraw'
"LLVM_PROFILE_FILE=$profPattern" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_ENV
"prof_dir=$($profDir.FullName)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
- name: Test ${{matrix.group}}
run: |-
$params = @{
SkipBuild = $true
Test = $true
ExcludeRustTests = $true
Verbose = $true
}
./build.ps1 @params -PesterTestGroup ${{matrix.group}}
- name: Generate coverage report
if: always()
run: |-
Import-Module ./helpers.build.psm1 -Force
$binPath = Get-ArtifactDirectoryPath | Select-Object -ExpandProperty Bin
$exportParams = @{
BinDirectory = $binPath
ProfileDirectory = '${{ steps.coverage-env.outputs.prof_dir }}'
OutputPath = 'pester-lcov.info'
Verbose = $true
}
Export-PesterCodeCoverageReport @exportParams
- name: Clean up coverage temp data
if: always()
run: |-
$profDir = '${{ steps.coverage-env.outputs.prof_dir }}'
if (Test-Path $profDir) {
Remove-Item -Path $profDir -Recurse -Force
Write-Host "Cleaned up temp coverage data: $profDir"
}
- name: Upload coverage data
if: always()
uses: actions/upload-artifact@v4
with:
name: windows-pester-${{matrix.group}}-coverage
path: pester-lcov.info
if-no-files-found: ignore
coverage-report:
if: github.event_name == 'pull_request'
# Use all platforms for changed-code coverage so platform-specific files are
# included. Keep full-codebase coverage Linux-only to avoid inflating its
# denominator with platform-specific sources.
needs:
- linux-build
- linux-pester
- macos-build
- macos-pester
- windows-build
- windows-pester
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Download coverage artifacts
uses: actions/download-artifact@v4
with:
pattern: '*coverage'
path: coverage-data
- name: Consolidate coverage data
id: coverage
run: |-
Import-Module ./helpers.build.psm1 -Force
$baseSha = '${{ github.event.pull_request.base.sha }}'
$headSha = '${{ github.event.pull_request.head.sha }}'
# Compute the merge-base to get an accurate diff of only PR changes.
$mergeBase = git merge-base $baseSha $headSha 2>$null
if ($LASTEXITCODE -eq 0 -and $mergeBase) {
Write-Verbose -Verbose "Using merge-base $mergeBase (base=$baseSha, head=$headSha)"
$baseSha = $mergeBase
}
# Changed-code coverage uses every platform so platform-specific Rust
# files are analyzed. Full-codebase coverage remains Linux-only to
# avoid inflating its denominator with platform-specific sources.
$lcovFiles = Get-ChildItem -Path 'coverage-data' -Filter 'lcov.info' -Recurse
$pesterLcovFiles = Get-ChildItem -Path 'coverage-data' -Filter 'pester-lcov.info' -Recurse
$allLcovFiles = @($lcovFiles) + @($pesterLcovFiles) | Where-Object { $_ }
$linuxLcovFiles = @($allLcovFiles | Where-Object {
($_.FullName -match '[/\\]linux-[^/\\]+-coverage[/\\]') -or
($_.FullName -match '[/\\]linux-coverage[/\\]')
})
if ($allLcovFiles.Count -eq 0) {
Write-Warning 'No coverage data found from any platform.'
"coverage_failed=true" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
return
}
if ($linuxLcovFiles.Count -eq 0) {
Write-Warning 'No Linux coverage data found for the full-codebase report.'
"coverage_failed=true" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
return
}
"coverage_failed=false" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
Write-Verbose -Verbose "Found $($allLcovFiles.Count) cross-platform LCOV file(s)"
Write-Verbose -Verbose "Found $($linuxLcovFiles.Count) Linux LCOV file(s)"
# Merge all platforms for changed-code coverage.
$mergedLcovPath = Join-Path $PWD 'merged-lcov.info'
if ($allLcovFiles.Count -eq 1) {
Copy-Item -Path $allLcovFiles[0].FullName -Destination $mergedLcovPath
} else {
Merge-LcovFile -Path ($allLcovFiles | ForEach-Object { $_.FullName }) -OutputPath $mergedLcovPath -Verbose
}
# Merge Linux coverage separately for the full-codebase report.
$linuxMergedLcovPath = Join-Path $PWD 'linux-merged-lcov.info'
if ($linuxLcovFiles.Count -eq 1) {
Copy-Item -Path $linuxLcovFiles[0].FullName -Destination $linuxMergedLcovPath
} else {
Merge-LcovFile -Path ($linuxLcovFiles | ForEach-Object { $_.FullName }) -OutputPath $linuxMergedLcovPath -Verbose
}
$fullReport = Get-FullCodeCoverageReport -LcovPath $linuxMergedLcovPath -Verbose
"full_percentage=$($fullReport.Percentage)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
"full_covered=$($fullReport.CoveredLines)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
"full_total=$($fullReport.TotalLines)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
"full_emoji=$($fullReport.Emoji)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
"full_label=$($fullReport.Label)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
# Changed-code coverage report (only when Rust files were modified)
$changedFiles = git diff --name-only --diff-filter=ACMR "$baseSha..$headSha" -- '*.rs' | Where-Object { $_ }
if (-not $changedFiles) {
"has_rust_changes=false" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
return
}
"has_rust_changes=true" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
$report = Get-CodeCoverageReport -LcovPath $mergedLcovPath -BaseSha $baseSha -HeadSha $headSha -Verbose
"percentage=$($report.Percentage)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
"covered=$($report.CoveredLines)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
"total=$($report.TotalLines)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
"emoji=$($report.Emoji)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
"label=$($report.Label)" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_OUTPUT
- name: Post coverage comment
if: >-
steps.coverage.outputs.has_rust_changes == 'true'
&& steps.coverage.outputs.coverage_failed != 'true'
&& github.event.pull_request.head.repo.full_name == github.repository
uses: marocchino/sticky-pull-request-comment@v2
with:
header: coverage-report
message: |
## ${{ steps.coverage.outputs.emoji }} Code Coverage Report
### Changed Code Coverage
**${{ steps.coverage.outputs.percentage }}%** (${{ steps.coverage.outputs.label }})
| Metric | Value |
|--------|-------|
| Changed lines analyzed | ${{ steps.coverage.outputs.total }} |
| Lines covered by tests | ${{ steps.coverage.outputs.covered }} |
| Coverage percentage | ${{ steps.coverage.outputs.percentage }}% |
### ${{ steps.coverage.outputs.full_emoji }} Full Codebase Coverage
**${{ steps.coverage.outputs.full_percentage }}%** (${{ steps.coverage.outputs.full_label }})
| Metric | Value |
|--------|-------|
| Total executable lines | ${{ steps.coverage.outputs.full_total }} |
| Lines covered by tests | ${{ steps.coverage.outputs.full_covered }} |
| Coverage percentage | ${{ steps.coverage.outputs.full_percentage }}% |
> Changed code coverage measures only Rust lines added/modified in this PR.
> Full codebase coverage measures all instrumented Rust lines across the project.
- name: Post coverage comment (report failed)
if: >-
steps.coverage.outputs.coverage_failed == 'true'
&& github.event.pull_request.head.repo.full_name == github.repository
uses: marocchino/sticky-pull-request-comment@v2
with:
header: coverage-report
message: |
## :x: Code Coverage Report
**Coverage report could not be generated.** The build or test run failed before
producing coverage data. Check the workflow logs for details.
- name: Post no-changes comment
if: >-
steps.coverage.outputs.has_rust_changes == 'false'
&& steps.coverage.outputs.coverage_failed != 'true'
&& github.event.pull_request.head.repo.full_name == github.repository
uses: marocchino/sticky-pull-request-comment@v2
with:
header: coverage-report
message: |
## Code Coverage Report
No Rust files were changed in this PR.
### ${{ steps.coverage.outputs.full_emoji }} Full Codebase Coverage
**${{ steps.coverage.outputs.full_percentage }}%** (${{ steps.coverage.outputs.full_label }})
| Metric | Value |
|--------|-------|
| Total executable lines | ${{ steps.coverage.outputs.full_total }} |
| Lines covered by tests | ${{ steps.coverage.outputs.full_covered }} |
| Coverage percentage | ${{ steps.coverage.outputs.full_percentage }}% |
> Full codebase coverage measures all instrumented Rust lines across the project.
- name: Fail if coverage is below 70%
if: >-
steps.coverage.outputs.has_rust_changes == 'true'
&& steps.coverage.outputs.coverage_failed != 'true'
&& steps.coverage.outputs.percentage < 70
run: |
Write-Error "Code coverage is ${{ steps.coverage.outputs.percentage }}%, which is below the 70% minimum threshold."
exit 1