-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ps1
227 lines (190 loc) · 7.42 KB
/
build.ps1
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
param(
[string]$buildType="Debug",
[string]$dotnetDir="c:\Program Files\dotnet",
[string]$msbuildDir="C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin",
[string]$root=$PSScriptRoot,
[string]$runTests="YES",
[string]$failBuildOnTest="YES",
[string]$slnFile="wilson.sln",
[switch]$runApiCompat,
[switch]$generateContractAssemblies)
################################################# Functions ############################################################
function WriteSectionHeader($sectionName)
{
$startTime = Get-Date -DisplayHint Time
Write-Host ""
Write-Host "============================"
Write-Host $sectionName
Write-Host "Start Time: " $startTime
Write-Host ""
}
function WriteSectionFooter($sectionName)
{
$startTime = Get-Date -DisplayHint Time
Write-Host ""
Write-Host "End Time: " $startTime
Write-Host $sectionName
Write-Host "============================"
Write-Host ""
}
function RemoveFolder($folder)
{
if (Test-Path($folder))
{
Write-Host ">>> Remove-Item -Recurse -Force $folder"
Remove-Item -Recurse -Force $folder
}
}
function CreateArtifactsRoot($folder)
{
RemoveFolder($folder)
Write-Host ">>> mkdir $folder | Out-Null"
mkdir $folder | Out-Null
}
function GenerateContractAssemblies($root)
{
# clear content of baseline files as it is not relevant for the next version
ClearBaselineFiles($root)
# execute generateContractAssemblies script
& "$root\generateContractAssemblies.ps1".
}
function ClearBaselineFiles($root)
{
Write-Host ">>> Clear-Content $root\Tools\apiCompat\baseline\*.txt"
Clear-Content $root\Tools\apiCompat\baseline\*.txt
}
################################################# Functions ############################################################
if ($env:VSINSTALLDIR)
{
if (Test-Path($env:VSINSTALLDIR+"\MSBuild\Current\Bin"))
{
$msbuildDir = $env:VSINSTALLDIR+"\MSBuild\Current\Bin";
}
}
WriteSectionHeader("build.ps1 - parameters");
Write-Host "buildType: " $buildType;
Write-Host "dotnetDir: " $dotnetDir
Write-Host "root: " $root;
Write-Host "runTests: " $runTests;
Write-Host "failBuildOnTest: " $failBuildOnTest;
Write-Host "slnFile: " $slnFile;
Write-Host "runApiCompat: " $runApiCompat;
Write-Host "generateContractAssemblies: " $generateContractAssemblies;
WriteSectionFooter("End build.ps1 - parameters");
[xml]$buildConfiguration = Get-Content $PSScriptRoot\buildConfiguration.xml
$artifactsRoot = "$root\artifacts";
$dotnetexe = "$dotnetDir\dotnet.exe";
$msbuildexe = "$msbuildDir\msbuild.exe";
$nugetVersion = $buildConfiguration.SelectSingleNode("root/nugetVersion").InnerText;
$releaseVersion = [string]$buildConfiguration.SelectSingleNode("root/release").InnerText;
$nugetPreview = $buildConfiguration.SelectSingleNode("root/nugetPreview").InnerText;
WriteSectionHeader("Environment");
$startTime = Get-Date
Write-Host "Start Time: " $startTime
Write-Host "PSScriptRoot: " $PSScriptRoot;
Write-Host "artifactsRoot: " $artifactsRoot;
Write-Host "dotnetexe: " $dotnetexe;
Write-Host "msbuildexe: " $msbuildexe;
Write-Host "nugetVersion: " $nugetVersion;
Write-Host "releaseVersion: " $releaseVersion;
Write-Host "nugetPreview: " $nugetPreview;
WriteSectionFooter("End Environment");
$ErrorActionPreference = "Stop"
WriteSectionHeader("VerifyResourceUsage.pl");
Write-Host ">>> Start-Process -Wait -PassThru -NoNewWindow perl $root\src\VerifyResourceUsage.pl"
$verifyResourceUsageResult = Start-Process -Wait -PassThru -NoNewWindow perl $root\src\VerifyResourceUsage.pl
if($verifyResourceUsageResult.ExitCode -ne 0)
{
throw "VerifyResourceUsage.pl failed."
}
WriteSectionFooter("End VerifyResourceUsage.pl");
WriteSectionHeader("Build");
$projects = $buildConfiguration.SelectNodes("root/projects/src/project");
foreach($project in $projects) {
$name = $project.name;
RemoveFolder("$root\src\$name\bin");
RemoveFolder("$root\src\$name\obj");
}
$testProjects = $buildConfiguration.SelectNodes("root/projects/test/project")
foreach ($testProject in $testProjects) {
$name = $testProject.name;
RemoveFolder("$root\test\$name\bin");
RemoveFolder("$root\test\$name\obj");
}
CreateArtifactsRoot($artifactsRoot);
pushd
Set-Location $root
Write-Host ""
Write-Host ">>> Start-Process -wait -NoNewWindow $msbuildexe /restore:True /p:UseSharedCompilation=false /nr:false /verbosity:m /p:Configuration=$buildType /p:RunApiCompat=$runApiCompat $slnFile"
Write-Host ""
Write-Host "msbuildexe: " $msbuildexe
$p = Start-Process -Wait -PassThru -NoNewWindow $msbuildexe "/r:True /p:UseSharedCompilation=false /nr:false /verbosity:m /p:Configuration=$buildType /p:RunApiCompat=$runApiCompat $slnFile"
if($p.ExitCode -ne 0)
{
throw "Build failed."
}
popd
if ($generateContractAssemblies.IsPresent)
{
WriteSectionHeader("Generating Contract Assemblies");
GenerateContractAssemblies($root);
WriteSectionFooter("End Generating Contract Assemblies");
}
foreach($project in $buildConfiguration.SelectNodes("root/projects/src/project"))
{
$name = $project.name;
Write-Host ">>> Start-Process -Wait -PassThru -NoNewWindow $dotnetexe 'pack' --no-build --no-restore -nodereuse:false -c $buildType -o $artifactsRoot -v m -s $root\src\$name\$name.csproj"
Start-Process -wait -PassThru -NoNewWindow $dotnetexe "pack --no-build --no-restore -nodereuse:false -c $buildType -o $artifactsRoot -v m -s $root\src\$name\$name.csproj"
}
WriteSectionFooter("End Build");
if ($runTests -eq "YES")
{
WriteSectionHeader("Run Tests");
$testProjects = $buildConfiguration.SelectNodes("root/projects/test/project")
foreach ($testProject in $testProjects)
{
if ($testProject.test -eq "YES")
{
WriteSectionHeader("Test");
$name = $testProject.name;
Write-Host ">>> Set-Location $root\test\$name"
pushd
Set-Location $root\test\$name
Write-Host ">>> Start-Process -Wait -PassThru -NoNewWindow $dotnetexe 'test $name.csproj' --filter category!=nonwindowstests --no-build --no-restore -nodereuse:false -v n -c $buildType"
$p = Start-Process -Wait -PassThru -NoNewWindow $dotnetexe "test $name.csproj --filter category!=nonwindowstests --no-build --no-restore -nodereuse:false -v n -c $buildType"
if($p.ExitCode -ne 0)
{
if (!$testExitCode)
{
$failedTestProjects = "$name"
}
else
{
$failedTestProjects = "$failedTestProjects, $name"
}
}
$testExitCode = $p.ExitCode + $testExitCode
popd
WriteSectionFooter("End Test");
}
}
WriteSectionFooter("End Tests");
if($testExitCode -ne 0)
{
WriteSectionHeader("==== Test Failures ====");
Write-Host "Failed test projects: $failedTestProjects" -foregroundcolor "DarkRed"
WriteSectionFooter("==== End Test Failures ====");
if($failBuildOnTest -ne "NO")
{
throw "Exiting test run."
}
}
}
Write-Host "============================"
Write-Host ""
$time = Get-Date
Write-Host "Start Time: " ($startTime);
Write-Host "End Time: " ($time);
Write-Host "Time to build: " ($time - $startTime);
Write-Host ""
Write-Host "============================";