-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ps1
executable file
·38 lines (28 loc) · 936 Bytes
/
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
#!/usr/bin/env powershell
#requires -Version 6.0
[cmdletbinding(DefaultParameterSetName = 'Task')]
param(
# Build task(s) to execute
[parameter(ParameterSetName = 'task', position = 0)]
[string[]]$Task = 'default',
# Bootstrap dependencies
[switch]$Bootstrap,
# List available build tasks
[parameter(ParameterSetName = 'Help')]
[switch]$Help,
# Optional properties to pass to psake
[hashtable]$Properties
)
$ErrorActionPreference = 'Stop'
if ($Bootstrap) {
. "$PSScriptRoot/build/bootstrap.ps1"
}
$psakeFile = "$PSScriptRoot/build/psake.ps1"
if ($PSCmdlet.ParameterSetName -eq 'Help') {
Get-PSakeScriptTasks -buildFile $psakeFile |
Format-Table -Property Name, Description, Alias, DependsOn
} else {
Set-BuildEnvironment -Force -BuildOutput "$PSScriptRoot/artifacts"
Invoke-Psake -BuildFile $psakeFile -TaskList $Task -NoLogo -Properties $Properties
exit ([int](-not $psake.build_success))
}