Skip to content

Commit af4d674

Browse files
authored
Clean up build scripts (#8302)
* Remove remnants of test coverage infra * Do not force to restore/build for test flows
1 parent 6900eeb commit af4d674

File tree

3 files changed

+2
-71
lines changed

3 files changed

+2
-71
lines changed

.config/dotnet-tools.json

-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@
88
"dotnet-coverage"
99
]
1010
},
11-
"dotnet-reportgenerator-globaltool": {
12-
"version": "5.2.4",
13-
"commands": [
14-
"reportgenerator"
15-
]
16-
},
1711
"PowerShell": {
1812
"version": "7.5.0",
1913
"commands": [

eng/build.ps1

+1-37
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ 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-
1612
[Parameter(ValueFromRemainingArguments=$true)][String[]]$properties
1713
)
1814

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

4944
Write-Host "Libraries settings:"
@@ -82,7 +77,7 @@ if ($vs) {
8277
}
8378

8479
# Check if an action is passed in
85-
$actions = "b","build","r","restore","rebuild","sign","testnobuild","publish","clean"
80+
$actions = "b","build","r","restore","rebuild","sign","testnobuild","publish","clean","t","test"
8681
$actionPassedIn = @(Compare-Object -ReferenceObject @($PSBoundParameters.Keys) -DifferenceObject $actions -ExcludeDifferent -IncludeEqual).Length -ne 0
8782
if ($null -ne $properties -and $actionPassedIn -ne $true) {
8883
$actionPassedIn = @(Compare-Object -ReferenceObject $properties -DifferenceObject $actions.ForEach({ "-" + $_ }) -ExcludeDifferent -IncludeEqual).Length -ne 0
@@ -96,7 +91,6 @@ foreach ($argument in $PSBoundParameters.Keys)
9691
{
9792
switch($argument)
9893
{
99-
"testCoverage" { <# this argument is handled in this script only #> }
10094
"os" { $arguments += " /p:TargetOS=$($PSBoundParameters[$argument])" }
10195
"properties" { $arguments += " " + $properties }
10296
"verbosity" { $arguments += " -$argument " + $($PSBoundParameters[$argument]) }
@@ -113,34 +107,4 @@ if ($env:TreatWarningsAsErrors -eq 'false') {
113107
Write-Host "& `"$PSScriptRoot/common/build.ps1`" $arguments"
114108
Invoke-Expression "& `"$PSScriptRoot/common/build.ps1`" $arguments"
115109

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-
146110
exit 0

eng/build.sh

+1-28
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ 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."
4544
echo ""
4645

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

5655
arguments=''
5756
extraargs=''
58-
testCoverage=false
5957

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

6462
while [[ $# > 0 ]]; do
@@ -138,10 +136,6 @@ while [[ $# > 0 ]]; do
138136
shift 1
139137
;;
140138

141-
-testcoverage)
142-
testCoverage=true
143-
;;
144-
145139
*)
146140
extraargs="$extraargs $1"
147141
shift 1
@@ -159,24 +153,3 @@ fi
159153

160154
arguments="$arguments $extraargs"
161155
"$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)