This repository was archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbuild.ps1
87 lines (80 loc) · 2.63 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
[CmdletBinding(DefaultParameterSetName = 'build')]
param(
[parameter(ParameterSetName = 'bootstrap', Mandatory)]
[switch]
$Bootstrap,
[parameter(ParameterSetName = 'bootstrap')]
[switch]
$Sudo,
[parameter(ParameterSetName = 'build')]
[switch]
$Build
)
# this function wraps native command Execution
# for more information, read https://mnaoumov.wordpress.com/2015/01/11/execution-of-external-commands-in-powershell-done-right/
function script:Start-NativeExecution
{
param(
[scriptblock]$ScriptBlock,
[switch]$IgnoreExitcode,
[switch]$VerboseOutputOnError
)
$backupEAP = $ErrorActionPreference
$ErrorActionPreference = "Continue"
try {
if($VerboseOutputOnError.IsPresent)
{
$output = & $ScriptBlock 2>&1
}
else
{
& $ScriptBlock
}
# note, if $ScriptBlock doesn't have a native invocation, $LASTEXITCODE will
# point to the obsolete value
if ($LASTEXITCODE -ne 0 -and -not $IgnoreExitcode) {
if($VerboseOutputOnError.IsPresent -and $output)
{
$output | Out-String | Write-Verbose -Verbose
}
# Get caller location for easier debugging
$caller = Get-PSCallStack -ErrorAction SilentlyContinue
if($caller)
{
$callerLocationParts = $caller[1].Location -split ":\s*line\s*"
$callerFile = $callerLocationParts[0]
$callerLine = $callerLocationParts[1]
$errorMessage = "Execution of {$ScriptBlock} by ${callerFile}: line $callerLine failed with exit code $LASTEXITCODE"
throw $errorMessage
}
throw "Execution of {$ScriptBlock} failed with exit code $LASTEXITCODE"
}
} finally {
$ErrorActionPreference = $backupEAP
}
}
switch ($PSCmdlet.ParameterSetName) {
'build' {
$scriptPath = Join-Path -Path $PSScriptRoot -ChildPath 'src\invoke-pwsh.js'
$destinationPath = Join-Path -Path $PSScriptRoot -ChildPath "PesterActionV1\_init"
ncc build -m $scriptPath -o $destinationPath
}
'bootstrap' {
$sudoCmd = ''
if ($Sudo.IsPresent) {
$sudoCmd = 'sudo'
}
$ScriptBlock = [scriptblock]::Create("$sudoCmd npm i -g @zeit/ncc ")
Start-NativeExecution -ScriptBlock $ScriptBlock
Push-Location -Path $PSScriptRoot\src
try {
npm install
}
finally {
Pop-Location
}
}
default {
throw "Unknow parameterset $($pscmdlet.ParameterSetName)"
}
}