-
Notifications
You must be signed in to change notification settings - Fork 67
/
build.ps1
178 lines (169 loc) · 7.15 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
[cmdletbinding()]
param(
[parameter( Position = 0)]
[ValidateSet('Init','Clean','Compile','Import','Test','Full','Deploy','Skip','Docs')]
[string[]]
$Task = @('Init','Clean','Compile','Import'),
[parameter()]
[Alias('nr','nor')]
[switch]$NoRestore,
[switch]$UpdateModules,
[switch]$Force,
[switch]$Help
)
$env:_BuildStart = Get-Date -Format 'o'
$ModuleName = 'PSGSuite'
$Dependencies = @{
Configuration = '1.3.1'
psake = '4.9.0'
}
if ($env:SYSTEM_STAGENAME -eq 'Build' -or -not (Test-Path Env:\TF_BUILD)) {
$Dependencies['PowerShellGet'] = '2.2.1'
}
$update = @{}
$verbose = @{}
if ($PSBoundParameters.ContainsKey('UpdateModules')) {
$update['UpdateModules'] = $PSBoundParameters['UpdateModules']
}
if ($PSBoundParameters.ContainsKey('Verbose')) {
$verbose['Verbose'] = $PSBoundParameters['Verbose']
}
. ([System.IO.Path]::Combine($PSScriptRoot,"ci","AzurePipelinesHelpers.ps1"))
if ($Help) {
Add-Heading "Getting help"
Write-BuildLog -c '"psake" | Resolve-Module @update @Verbose'
'psake' | Resolve-Module @update @verbose
Write-BuildLog "psake script tasks:"
Get-PSakeScriptTasks -buildFile "$PSScriptRoot\psake.ps1" |
Sort-Object -Property Name |
Format-Table -Property Name, Description, Alias, DependsOn
}
else {
$env:BuildProjectName = $ModuleName
$env:BuildScriptPath = $PSScriptRoot
if ($Task -contains 'Docs') {
$env:NoNugetRestore = $true
}
else {
$env:NoNugetRestore = $NoRestore
}
$global:PSDefaultParameterValues = @{
'*-Module:Verbose' = $false
'Import-Module:ErrorAction' = 'Stop'
'Import-Module:Force' = $true
'Import-Module:Verbose' = $false
'Install-Module:AllowClobber' = $true
'Install-Module:ErrorAction' = 'Stop'
'Install-Module:Force' = $true
'Install-Module:Scope' = 'CurrentUser'
'Install-Module:Repository' = 'PSGallery'
'Install-Module:Verbose' = $false
}
Get-PackageProvider -Name Nuget -ForceBootstrap -Verbose:$false
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted -Verbose:$false
Add-EnvironmentSummary "Build started"
Set-BuildVariables
Add-Heading "Pulling module and build dependencies"
[hashtable[]]$moduleDependencies = @()
foreach ($module in $Dependencies.Keys) {
$moduleDependencies += @{
Name = $module
MinimumVersion = $Dependencies[$module]
}
}
(Import-PowerShellDataFile ([System.IO.Path]::Combine($PSScriptRoot,$ModuleName,"$ModuleName.psd1"))).RequiredModules | ForEach-Object {
$item = $_
if ($item -is [hashtable] -and $Dependencies.Keys -notcontains $item.ModuleName) {
Write-BuildLog "Adding new dependency from PSD1: $($item.ModuleName)"
$hash = @{
Name = $item.ModuleName
}
if ($item.ContainsKey('ModuleVersion')) {
$hash['MinimumVersion'] = $item.ModuleVersion
}
$moduleDependencies += $hash
}
elseif ($item -is [string] -and $Dependencies.Keys -notcontains $item) {
$moduleDependencies += @{
Name = $item
}
}
}
try {
$null = Get-PackageProvider -Name Nuget -ForceBootstrap -Verbose:$false -ErrorAction Stop
}
catch {
throw
}
Add-Heading "Finalizing build prerequisites"
if (
$Task -eq 'Deploy' -and -not $Force -and (
$ENV:BUILD_BUILDURI -notlike 'vstfs:*' -or
$env:BUILD_SOURCEBRANCH -like '*pull*' -or
$env:BUILD_SOURCEVERSIONMESSAGE -notmatch '!deploy' -or
$env:BUILD_SOURCEBRANCHNAME -ne 'master' -or
$PSVersionTable.PSVersion.Major -ne 5 -or
$null -eq $env:NugetApiKey
)
) {
"Task is 'Deploy', but conditions are not correct for deployment:`n" +
" + Current build system is VSTS : $($env:BUILD_BUILDURI -like 'vstfs:*') [$env:BUILD_BUILDURI]`n" +
" + Current branch is master : $($env:BUILD_SOURCEBRANCHNAME -eq 'master') [$env:BUILD_SOURCEBRANCHNAME]`n" +
" + Source is not a pull request : $($env:BUILD_SOURCEBRANCH -notlike '*pull*') [$env:BUILD_SOURCEBRANCH]`n" +
" + Current PS major version is 5 : $($PSVersionTable.PSVersion.Major -eq 5) [$($PSVersionTable.PSVersion.ToString())]`n" +
" + NuGet API key is not null : $($null -ne $env:NugetApiKey)`n" +
" + Build script is not Force ran : $($Force)`n" +
" + Commit message matches '!deploy' : $($env:BUILD_SOURCEVERSIONMESSAGE -match '!deploy') [$env:BUILD_SOURCEVERSIONMESSAGE]`n" +
"Skipping psake for this job!" | Write-Host -ForegroundColor Yellow
exit 0
}
else {
if ($Task -eq 'Deploy') {
"Task is 'Deploy' and conditions are correct for deployment:`n" +
" + Build script is Force ran : $($Force)`n" +
" + Current build system is VSTS : $($env:BUILD_BUILDURI -like 'vstfs:*') [$env:BUILD_BUILDURI]`n" +
" + Current branch is master : $($env:BUILD_SOURCEBRANCHNAME -eq 'master') [$env:BUILD_SOURCEBRANCHNAME]`n" +
" + Source is not a pull request : $($env:BUILD_SOURCEBRANCH -notlike '*pull*') [$env:BUILD_SOURCEBRANCH]`n" +
" + Current PS major version is 5 : $($PSVersionTable.PSVersion.Major -eq 5) [$($PSVersionTable.PSVersion.ToString())]`n" +
" + NuGet API key is not null : $($null -ne $env:NugetApiKey)`n" +
" + Commit message matches '!deploy' : $($env:BUILD_SOURCEVERSIONMESSAGE -match '!deploy') [$env:BUILD_SOURCEVERSIONMESSAGE]"| Write-Host -ForegroundColor Green
}
Write-BuildLog "Resolving necessary modules"
foreach ($module in $moduleDependencies) {
Write-BuildLog "[$($module.Name)] Resolving"
try {
Import-Module @module
}
catch {
Write-BuildLog "[$($module.Name)] Installing missing module"
Install-Module @module -Repository PSGallery
Import-Module @module
}
}
Write-BuildLog "Modules resolved"
if ($Task -eq 'TestOnly') {
$global:ExcludeTag = @('Module')
}
else {
$global:ExcludeTag = $null
}
if ($Force) {
$global:ForceDeploy = $true
}
else {
$global:ForceDeploy = $false
}
Add-Heading "Invoking psake with task list: [ $($Task -join ', ') ]"
$psakeParams = @{
buildFile = "$PSScriptRoot\psake.ps1"
taskList = $Task
}
Invoke-psake @psakeParams @verbose -parameters @{NoRestore = $NoRestore}
if (($Task -contains 'Import' -or $Task -contains 'Test') -and $psake.build_success) {
Add-Heading "Importing $env:BuildProjectName to local scope"
Import-Module ([System.IO.Path]::Combine($env:BHBuildOutput,$env:BHProjectName)) -Verbose:$false
}
Add-EnvironmentSummary "Build finished"
exit ( [int]( -not $psake.build_success ) )
}
}