Skip to content

Commit b0be284

Browse files
authored
Revert "Clean up build scripts (#8265)" (#8291)
This reverts commit 4642f54.
1 parent 874bd56 commit b0be284

File tree

3 files changed

+79
-2
lines changed

3 files changed

+79
-2
lines changed

.config/dotnet-tools.json

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
"version": 1,
33
"isRoot": true,
44
"tools": {
5+
"dotnet-coverage": {
6+
"version": "17.13.1",
7+
"commands": [
8+
"dotnet-coverage"
9+
]
10+
},
11+
"dotnet-reportgenerator-globaltool": {
12+
"version": "5.2.4",
13+
"commands": [
14+
"reportgenerator"
15+
]
16+
},
517
"PowerShell": {
618
"version": "7.5.0",
719
"commands": [

eng/build.ps1

+39-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Param(
99
[switch]$testnobuild,
1010
[ValidateSet("x86","x64","arm","arm64")][string[]][Alias('a')]$arch = @([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture.ToString().ToLowerInvariant()),
1111

12+
# Run tests with code coverage
13+
[Parameter(ParameterSetName='CommandLine')]
14+
[switch] $testCoverage,
15+
1216
[Parameter(ValueFromRemainingArguments=$true)][String[]]$properties
1317
)
1418

@@ -39,6 +43,7 @@ function Get-Help() {
3943
Write-Host " -sign Sign build outputs."
4044
Write-Host " -test (-t) Incrementally builds and runs tests."
4145
Write-Host " Use in conjunction with -testnobuild to only run tests."
46+
Write-Host " -testCoverage Run unit tests and capture code coverage information."
4247
Write-Host ""
4348

4449
Write-Host "Libraries settings:"
@@ -77,7 +82,7 @@ if ($vs) {
7782
}
7883

7984
# Check if an action is passed in
80-
$actions = "b","build","r","restore","rebuild","sign","testnobuild","publish","clean","t","test"
85+
$actions = "b","build","r","restore","rebuild","sign","testnobuild","publish","clean"
8186
$actionPassedIn = @(Compare-Object -ReferenceObject @($PSBoundParameters.Keys) -DifferenceObject $actions -ExcludeDifferent -IncludeEqual).Length -ne 0
8287
if ($null -ne $properties -and $actionPassedIn -ne $true) {
8388
$actionPassedIn = @(Compare-Object -ReferenceObject $properties -DifferenceObject $actions.ForEach({ "-" + $_ }) -ExcludeDifferent -IncludeEqual).Length -ne 0
@@ -91,6 +96,7 @@ foreach ($argument in $PSBoundParameters.Keys)
9196
{
9297
switch($argument)
9398
{
99+
"testCoverage" { <# this argument is handled in this script only #> }
94100
"os" { $arguments += " /p:TargetOS=$($PSBoundParameters[$argument])" }
95101
"properties" { $arguments += " " + $properties }
96102
"verbosity" { $arguments += " -$argument " + $($PSBoundParameters[$argument]) }
@@ -106,3 +112,35 @@ if ($env:TreatWarningsAsErrors -eq 'false') {
106112

107113
Write-Host "& `"$PSScriptRoot/common/build.ps1`" $arguments"
108114
Invoke-Expression "& `"$PSScriptRoot/common/build.ps1`" $arguments"
115+
116+
117+
# Perform code coverage as the last operation, this enables the following scenarios:
118+
# .\build.cmd -restore -build -c Release -testCoverage
119+
if ($testCoverage) {
120+
try {
121+
# Install required toolset
122+
. $PSScriptRoot/common/tools.ps1
123+
InitializeDotNetCli -install $true | Out-Null
124+
125+
Push-Location $PSScriptRoot/../
126+
127+
$testResultPath = "./artifacts/TestResults/$configuration";
128+
129+
# Run tests and collect code coverage
130+
./.dotnet/dotnet dotnet-coverage collect --settings ./eng/CodeCoverage.config --output $testResultPath/local.cobertura.xml "build.cmd -test -configuration $configuration"
131+
132+
# Generate the code coverage report and open it in the browser
133+
./.dotnet/dotnet reportgenerator -reports:$testResultPath/*.cobertura.xml -targetdir:$testResultPath/CoverageResultsHtml -reporttypes:HtmlInline_AzurePipelines
134+
Start-Process $testResultPath/CoverageResultsHtml/index.html
135+
}
136+
catch {
137+
Write-Host $_.Exception.Message -Foreground "Red"
138+
Write-Host $_.ScriptStackTrace -Foreground "DarkGray"
139+
exit $global:LASTEXITCODE;
140+
}
141+
finally {
142+
Pop-Location
143+
}
144+
}
145+
146+
exit 0

eng/build.sh

+28-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ usage()
4141
echo " --sign Sign build outputs."
4242
echo " --test (-t) Incrementally builds and runs tests."
4343
echo " Use in conjunction with --testnobuild to only run tests."
44+
echo " --testCoverage Run unit tests and capture code coverage information."
4445
echo ""
4546

4647
echo "Libraries settings:"
@@ -54,9 +55,10 @@ usage()
5455

5556
arguments=''
5657
extraargs=''
58+
testCoverage=false
5759

5860
# Check if an action is passed in
59-
declare -a actions=("b" "build" "r" "restore" "rebuild" "testnobuild" "sign" "publish" "clean" "t" "test")
61+
declare -a actions=("b" "build" "r" "restore" "rebuild" "testnobuild" "sign" "publish" "clean")
6062
actInt=($(comm -12 <(printf '%s\n' "${actions[@]/#/-}" | sort) <(printf '%s\n' "${@/#--/-}" | sort)))
6163

6264
while [[ $# > 0 ]]; do
@@ -136,6 +138,10 @@ while [[ $# > 0 ]]; do
136138
shift 1
137139
;;
138140

141+
-testcoverage)
142+
testCoverage=true
143+
;;
144+
139145
*)
140146
extraargs="$extraargs $1"
141147
shift 1
@@ -153,3 +159,24 @@ fi
153159

154160
arguments="$arguments $extraargs"
155161
"$scriptroot/common/build.sh" $arguments
162+
163+
164+
# Perform code coverage as the last operation, this enables the following scenarios:
165+
# .\build.sh --restore --build --c Release --testCoverage
166+
if [[ "$testCoverage" == true ]]; then
167+
# Install required toolset
168+
. "$DIR/common/tools.sh"
169+
InitializeDotNetCli true > /dev/null
170+
171+
repoRoot=$(realpath $DIR/../)
172+
testResultPath="$repoRoot/artifacts/TestResults/$configuration"
173+
174+
# Run tests and collect code coverage
175+
$repoRoot/.dotnet/dotnet 'dotnet-coverage' collect --settings $repoRoot/eng/CodeCoverage.config --output $testResultPath/local.cobertura.xml "$repoRoot/build.sh --test --configuration $configuration"
176+
177+
# Generate the code coverage report and open it in the browser
178+
$repoRoot/.dotnet/dotnet reportgenerator -reports:$testResultPath/*.cobertura.xml -targetdir:$testResultPath/CoverageResultsHtml -reporttypes:HtmlInline_AzurePipelines
179+
echo ""
180+
echo -e "\e[32mCode coverage results:\e[0m $testResultPath/CoverageResultsHtml/index.html"
181+
echo ""
182+
fi

0 commit comments

Comments
 (0)