-
Notifications
You must be signed in to change notification settings - Fork 0
/
init-psake.ps1
183 lines (151 loc) · 5.75 KB
/
init-psake.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
###############################################################################
### Bootstrap script for PSAKE ###
###############################################################################
### Copyright 2017 by PeopleWare n.v.. ###
###############################################################################
### Authors: Ruben Vandeginste, Danny Van den Wouwer ###
###############################################################################
### ###
### A script to bootstrap the powershell session for psake. ###
### ###
###############################################################################
#region INPUT PARAMATERS
###############################################################################
### INPUT PARAMETERS ###
###############################################################################
###############################################################################
# input parameters
# target: Task to execute
param([string]$target = '')
#endregion
#region HELPERS
###############################################################################
### HELPERS ###
###############################################################################
###############################################################################
# Stolen from Psake, helper function to execute external commands and respect
# their exit code.
#
function Exec {
[CmdletBinding()]
param (
[Parameter(Position = 0, Mandatory = 1)][scriptblock]$cmd,
[Parameter(Position = 1, Mandatory = 0)][string]$errorMessage = 'Bad command.',
[Parameter(Position = 2, Mandatory = 0)][int]$maxRetries = 0,
[Parameter(Position = 3, Mandatory = 0)][string]$retryTriggerErrorPattern = $null
)
$tryCount = 1
do
{
try
{
$global:lastexitcode = 0
& $cmd
if ($lastexitcode -ne 0)
{
throw ('Exec: ' + $errorMessage)
}
break
}
catch [Exception]
{
if ($tryCount -gt $maxRetries)
{
throw $_
}
if ($retryTriggerErrorPattern -ne $null)
{
$isMatch = [regex]::IsMatch($_.Exception.Message, $retryTriggerErrorPattern)
if ($isMatch -eq $false)
{
throw $_
}
}
Write-Host "Try $tryCount failed, retrying again in 1 second..."
$tryCount++
[System.Threading.Thread]::Sleep([System.TimeSpan]::FromSeconds(1))
}
}
while ($true)
}
###############################################################################
# Throw an error if the given command is not available
#
function CheckCommandAvailability {
param(
[String]
$cmd
)
if (!$(Get-Command "$cmd" -ErrorAction SilentlyContinue)) {
throw "'$cmd' not available from the commandline!"
}
}
#endregion
#region MAIN
###############################################################################
### MAIN ###
###############################################################################
###############################################################################
# Main script to bootstrap psake.
#
try
{
# find module, if not found, try to download it
$module = $null
$psakeNugetPackageName = 'psake'
$psakeVersion = '4.9.0'
$psakeNugetVersionedPackageName = "$psakeNugetPackageName.$($psakeVersion)"
# Can we find psake in our traditional packages directory?
$psakeToolsFolder = `
Join-Path -Path 'src' -ChildPath 'packages' | `
Join-Path -ChildPath $psakeNugetVersionedPackageName | `
Join-Path -ChildPath 'tools' | `
Join-Path -ChildPath 'psake'
if (Test-Path $psakeToolsFolder) {
$modulePath = Join-Path -Path $psakeToolsFolder -ChildPath 'psake.psd1'
if (Test-Path $modulePath) {
$module = Get-Item $modulePath
}
}
# If we didn't found it, install psake in our scratch directory
if ($null -eq $module) {
$scratchPsakePath = '.\scratch'
$nugetRestoreParams = @(
"$psakeNugetPackageName"
"-Version '$($psakeVersion)'"
"-OutputDirectory ""$scratchPsakePath"""
"-NonInteractive"
"-Verbosity quiet"
)
Exec { Invoke-Expression "nuget install $nugetRestoreParams" }
$psakeToolsFolder = `
Join-Path -Path 'scratch' -ChildPath $psakeNugetVersionedPackageName | `
Join-Path -ChildPath 'tools' | `
Join-Path -ChildPath 'psake'
if (Test-Path $psakeToolsFolder) {
$modulePath = Join-Path -Path $psakeToolsFolder -ChildPath 'psake.psd1'
if (Test-Path $modulePath) {
$module = Get-Item $modulePath
}
}
}
if ($null -eq $module)
{
throw 'Cannot find or fetch psake module, install psake: choco install psake.'
}
# import module, force a reload if already loaded
Import-Module $module.FullName -Force
# execute the target, if any given
if ($target -ne '')
{
Invoke-psake $target
}
}
catch
{
Write-Host 'Error executing psake.ps1' -ForegroundColor DarkYellow
Write-Host
# Re-Throw so that the calling code does not continue.
throw $_
}
#endregion