-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
build-in-pwsh.ps1
62 lines (57 loc) · 2.04 KB
/
build-in-pwsh.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
Write-Host $PSScriptRoot
Function Get-build-tools(){
if ([String]::IsNullOrEmpty($(Get-Command git -ErrorAction ignore))) {
Write-Output "You don't install git, please install it and add it to your path."
}
if ([String]::IsNullOrEmpty($(Get-Command yarn -ErrorAction ignore))) {
Write-Output "You don't install yarn, please install it and add it to your path."
Write-Output "You should also install Node.js to make yarn work fine."
}
if ([String]::IsNullOrEmpty($(Get-Command go -ErrorAction ignore))) {
Write-Output "You don't install go, please install it and add it to your path."
}
if ([String]::IsNullOrEmpty($(Get-Command git -ErrorAction ignore))) {
exit 1
}
if ([String]::IsNullOrEmpty($(Get-Command yarn -ErrorAction ignore))) {
exit 1
}
if ([String]::IsNullOrEmpty($(Get-Command go -ErrorAction ignore))) {
exit 1
}
}
Function Build-v2rayA(){
#Get OS
if ([String]::IsNullOrEmpty($(Test-Path ${env:windir} -ErrorAction Ignore))) {
$v2rayaBin = "v2raya"
}
else {
$v2rayaBin = "v2raya.exe"
}
#Get Paths
$TerminalPath = Get-Item -LiteralPath ./ | ForEach-Object -Process { $_.FullName }
$CurrentPath = $PSScriptRoot
Set-Location -Path "$CurrentPath"
#Get Informations
$DateLong = git log -1 --format="%cd" --date=short
$Date = $DateLong -replace "-"; ""
$count = git rev-list --count HEAD
$commit = git rev-parse --short HEAD
#Version
$version = "unstable-$date.r$count.$commit"
#Disable CGO
${env:CGO_ENABLED} = "0"
#Set yarn's output path
${env:OUTPUT_DIR} = "$CurrentPath/service/server/router/web"
#Build Web Panel
Set-Location -Path "$CurrentPath/gui"
yarn; yarn build
#Build v2rayA
Set-Location -Path "$CurrentPath/service"
go build -ldflags "-X github.com/v2rayA/v2rayA/conf.Version=$version -s -w" -o "$CurrentPath/$v2rayaBin"
Set-Location -Path "$TerminalPath"
}
Set-PSDebug -Trace 1
Get-build-tools
Build-v2rayA
Set-PSDebug -Trace 0