forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ps1
164 lines (132 loc) · 5.29 KB
/
configure.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
<#
.SYNOPSIS
Configures NuGet.Client build environment. Detects and initializes
VS build toolsets. Configuration settings are stored at configure.json file.
.PARAMETER CleanCache
Cleans NuGet packages cache before build
.PARAMETER Force
Switch to force installation of required tools.
.PARAMETER Test
Indicates the Tests need to be run. Downloads the Test cli when tests are needed to run.
.EXAMPLE
.\configure.ps1 -cc -v
Clean repo build environment configuration
.EXAMPLE
.\configure.ps1 -v
Incremental install of build tools
#>
[CmdletBinding(SupportsShouldProcess=$True)]
Param (
[Alias('cc')]
[switch]$CleanCache,
[Alias('f')]
[switch]$Force,
[switch]$RunTest
)
. "$PSScriptRoot\build\common.ps1"
Trace-Log "Configuring NuGet.Client build environment"
$BuildErrors = @()
Invoke-BuildStep 'Configuring git repo' {
Update-SubModules -Force:$Force
} -ev +BuildErrors
Invoke-BuildStep 'Installing NuGet.exe' {
Install-NuGet -Force:$Force
} -ev +BuildErrors
Invoke-BuildStep 'Installing .NET CLI' {
Install-DotnetCLI -Force:$Force
} -ev +BuildErrors
# Restoring tools required for build
Invoke-BuildStep 'Restoring solution packages' {
Restore-SolutionPackages
} -ev +BuildErrors
Invoke-BuildStep 'Cleaning package cache' {
Clear-PackageCache
} -skip:(-not $CleanCache) -ev +BuildErrors
$ConfigureObject = @{
BuildTools = @{}
Toolsets = @{}
}
Function New-BuildToolset {
param(
[int]$ToolsetVersion
)
$CommonToolsVar = "Env:VS${ToolsetVersion}0COMNTOOLS"
if (Test-Path $CommonToolsVar) {
$CommonToolsValue = gci $CommonToolsVar | select -expand value -ea Ignore
Verbose-Log "Using environment variable `"$CommonToolsVar`" = `"$CommonToolsValue`""
$ToolsetObject = @{
VisualStudioInstallDir = [System.IO.Path]::GetFullPath((Join-Path $CommonToolsValue '..\IDE'))
}
}
if (-not $ToolsetObject) {
$VisualStudioRegistryKey = "HKCU:\SOFTWARE\Microsoft\VisualStudio\${ToolsetVersion}.0_Config"
if (Test-Path $VisualStudioRegistryKey) {
Verbose-Log "Retrieving Visual Studio installation path from registry '$VisualStudioRegistryKey'"
$ToolsetObject = @{
VisualStudioInstallDir = gp $VisualStudioRegistryKey | select -expand InstallDir -ea Ignore
}
}
}
if (-not $ToolsetObject -and $ToolsetVersion -gt 14) {
$VisualStudioInstallRootDir = Get-LatestVisualStudioRoot
if ($VisualStudioInstallRootDir) {
Verbose-Log "Using willow instance '$VisualStudioInstallRootDir' installation path"
$ToolsetObject = @{
VisualStudioInstallDir = [System.IO.Path]::GetFullPath((Join-Path $VisualStudioInstallRootDir Common7\IDE\))
}
}
}
if (-not $ToolsetObject) {
$DefaultInstallDir = Join-Path $env:ProgramFiles "Microsoft Visual Studio ${ToolsetVersion}.0\Common7\IDE\"
if (Test-Path $DefaultInstallDir) {
Verbose-Log "Using default location of Visual Studio installation path"
$ToolsetObject = @{
VisualStudioInstallDir = $DefaultInstallDir
}
}
}
if (-not $ToolsetObject) {
Warning-Log "Toolset VS${ToolsetVersion} is not found."
}
# return toolset build configuration object
$ToolsetObject
}
$ProgramFiles = ${env:ProgramFiles(x86)}
if (-not $ProgramFiles -or -not (Test-Path $ProgramFiles)) {
$ProgramFiles = $env:ProgramFiles
}
$MSBuildDefaultRoot = Get-MSBuildRoot
$MSBuildRelativePath = 'bin\msbuild.exe'
$vsMajorVersion = Get-VSMajorVersion
$validateToolsetMessage = "Validating VS $vsMajorVersion toolset installation"
Invoke-BuildStep $validateToolsetMessage {
$vstoolset = New-BuildToolset $vsMajorVersion
if ($vstoolset) {
$ConfigureObject.Toolsets.Add('vstoolset', $vstoolset)
$script:MSBuildExe = Get-MSBuildExe $vsMajorVersion
$vsVersion = Get-VSVersion
# Hack VSSDK path
$VSToolsPath = Join-Path $MSBuildDefaultRoot "Microsoft\VisualStudio\v${vsVersion}"
$Targets = Join-Path $VSToolsPath 'VSSDK\Microsoft.VsSDK.targets'
if (-not (Test-Path $Targets)) {
Warning-Log "VSSDK is not found at default location '$VSToolsPath'. Attempting to override."
# Attempting to fix VS SDK path for VS willow install builds
# as MSBUILD failes to resolve it correctly
$VSToolsPath = Join-Path $vstoolset.VisualStudioInstallDir "..\..\MSBuild\Microsoft\VisualStudio\v${vsVersion}" -Resolve
$ConfigureObject.Add('EnvVars', @{ VSToolsPath = $VSToolsPath })
}
}
} -ev +BuildErrors
if ($MSBuildExe) {
$MSBuildExe = [System.IO.Path]::GetFullPath($MSBuildExe)
$MSBuildVersion = & $MSBuildExe '/version' '/nologo'
Trace-Log "Using MSBUILD version $MSBuildVersion found at '$MSBuildExe'"
$ConfigureObject.BuildTools.Add('MSBuildExe', $MSBuildExe)
}
New-Item $Artifacts -ItemType Directory -ea Ignore | Out-Null
$ConfigureObject | ConvertTo-Json -Compress | Set-Content $ConfigureJson
Trace-Log "Configuration data has been written to '$ConfigureJson'"
if ($BuildErrors) {
$ErrorLines = $BuildErrors | %{ ">>> $($_.Exception.Message)" }
Write-Error "Build's completed with $($BuildErrors.Count) error(s):`r`n$($ErrorLines -join "`r`n")" -ErrorAction Stop
}