forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ps1
203 lines (161 loc) · 5.87 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
<#
.SYNOPSIS
Builds NuGet client solutions and creates output artifacts.
.PARAMETER Configuration
Build configuration (debug by default)
.PARAMETER ReleaseLabel
Release label to use for package and assemblies versioning (zlocal by default)
.PARAMETER BuildNumber
Build number to use for package and assemblies versioning (auto-generated if not provided)
.PARAMETER MSPFXPath
Path to a code signing certificate for delay-sigining (optional)
.PARAMETER NuGetPFXPath
Path to a code signing certificate for delay-sigining (optional)
.PARAMETER SkipVS15
Skips building binaries targeting Visual Studio "15"
.PARAMETER Fast
Runs minimal incremental build. Skips end-to-end packaging step.
.PARAMETER CI
Indicates the build script is invoked from CI
.EXAMPLE
.\build.ps1
To run full clean build, e.g after switching branches
.EXAMPLE
.\build.ps1 -f
Fast incremental build
.EXAMPLE
.\build.ps1 -s15
To only run unit tests
.EXAMPLE
.\build.ps1 -v -ea Stop
To troubleshoot build issues
#>
[CmdletBinding()]
param (
[ValidateSet('debug', 'release')]
[Alias('c')]
[string]$Configuration,
[ValidatePattern('^(beta|final|preview|rc|release|rtm|xprivate|zlocal)([0-9]*)$')]
[Alias('l')]
[string]$ReleaseLabel = 'zlocal',
[Alias('n')]
[int]$BuildNumber,
[Alias('mspfx')]
[string]$MSPFXPath,
[Alias('nugetpfx')]
[string]$NuGetPFXPath,
[Alias('s15')]
[switch]$SkipVS15,
[Alias('su')]
[switch]$SkipUnitTest,
[Alias('f')]
[switch]$Fast,
[switch]$CI,
[switch]$Rebuild
)
. "$PSScriptRoot\build\common.ps1"
if (-not $Configuration) {
$Configuration = switch ($CI.IsPresent) {
$True { 'Release' } # CI build is Release by default
$False { 'Debug' } # Local builds are Debug by default
}
}
Write-Host ("`r`n" * 3)
Trace-Log ('=' * 60)
$startTime = [DateTime]::UtcNow
if (-not $BuildNumber) {
$BuildNumber = Get-BuildNumber
}
Trace-Log "Build #$BuildNumber started at $startTime"
Test-BuildEnvironment -CI:$CI
# Adjust version skipping if only one version installed - if VS15 is not installed, no need to specify SkipVS15
if (-not $SkipVS15 -and -not $VS15Installed) {
Warning-Log "VS15 build is requested but it appears not to be installed."
$SkipVS15 = $True
}
$BuildErrors = @()
Invoke-BuildStep 'Cleaning artifacts' {
Clear-Artifacts
Clear-Nupkgs
} `
-skip:$Fast `
-ev +BuildErrors
Invoke-BuildStep 'Set delay signing options' {
Set-DelaySigning $MSPFXPath $NuGetPFXPath
} `
-ev +BuildErrors
if($SkipUnitTest){
$VS15Target = "BuildVS15;Pack";
$VS15Message = "Running Build for VS 15.0"
}
else {
$VS15Target = "RunVS15";
$VS15Message = "Running Build, Pack, Core unit tests, and Unit tests for VS 15.0";
}
Invoke-BuildStep 'Running Restore for VS 15.0' {
# Restore for VS 15.0
Trace-Log ". `"$MSBuildExe`" build\build.proj /t:RestoreVS15 /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /v:m /m:1"
& $MSBuildExe build\build.proj /t:RestoreVS15 /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /v:m /m:1
if (-not $?)
{
Write-Error "Failed - Running Restore for VS 15.0"
exit 1
}
} `
-skip:$SkipVS15 `
-ev +BuildErrors
Invoke-BuildStep $VS15Message {
# Build and (If not $SkipUnitTest) Pack, Core unit tests, and Unit tests for VS 15.0
Trace-Log ". `"$MSBuildExe`" build\build.proj /t:$VS15Target /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /v:m /m:1"
& $MSBuildExe build\build.proj /t:$VS15Target /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /v:m /m:1
if (-not $?)
{
Write-Error "Failed - $VS15Message"
exit 1
}
} `
-skip:$SkipVS15 `
-ev +BuildErrors
Invoke-BuildStep 'Publishing the VS15 EndToEnd test package' {
param($Configuration)
$EndToEndScript = Join-Path $PSScriptRoot scripts\cibuild\CreateEndToEndTestPackage.ps1 -Resolve
$OutDir = Join-Path $Artifacts VS15
& $EndToEndScript -c $Configuration -tv 15 -out $OutDir
} `
-args $Configuration `
-skip:($Fast -or $SkipVS15) `
-ev +BuildErrors
Invoke-BuildStep 'Running Restore for VS 15.0 RTM' {
# Restore for VS 15.0
Trace-Log ". `"$MSBuildExe`" build\build.proj /t:RestoreVS15 /p:Configuration=$Configuration /p:BuildRTM=true /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /v:m /m:1 "
& $MSBuildExe build\build.proj /t:RestoreVS15 /p:Configuration=$Configuration /p:BuildRTM=true /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /v:m /m:1
if (-not $?)
{
Write-Error "Restore failed!"
exit 1
}
} `
-skip:($SkipVS15 -or (-not $CI))`
-ev +BuildErrors
Invoke-BuildStep 'Packing VS15 RTM' {
# Build and (If not $SkipUnitTest) Pack, Core unit tests, and Unit tests for VS 15.0
Trace-Log ". `"$MSBuildExe`" build\build.proj /t:BuildVS15`;Pack /p:Configuration=$Configuration /p:BuildRTM=true /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /v:m /m:1"
& $MSBuildExe build\build.proj /t:BuildVS15`;Pack /p:Configuration=$Configuration /p:BuildRTM=true /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /v:m /m:1
if (-not $?)
{
Write-Error "Packing VS15 RTM build failed!"
exit 1
}
} `
-skip:($SkipVS15 -or (-not $CI))`
-ev +BuildErrors
## Calculating Build time
$endTime = [DateTime]::UtcNow
Trace-Log "Build #$BuildNumber ended at $endTime"
Trace-Log "Time elapsed $(Format-ElapsedTime ($endTime - $startTime))"
Trace-Log ('=' * 60)
if ($BuildErrors) {
$ErrorLines = $BuildErrors | %{ ">>> $($_.Exception.Message)" }
Write-Error "Build's completed with $($BuildErrors.Count) error(s):`r`n$($ErrorLines -join "`r`n")" -ErrorAction Stop
}
Write-Host ("`r`n" * 3)