-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.ps1
More file actions
155 lines (135 loc) · 3.94 KB
/
make.ps1
File metadata and controls
155 lines (135 loc) · 3.94 KB
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
param(
[Parameter(Position=0, HelpMessage="The action to take (fetch, build, test, install, package, clean).")]
[string]
$Command = 'build',
[Parameter(HelpMessage="The target(s) to build or test (test, fmt, lsp, cli)")]
[string]
$Target = 'test,perf,fmt,lsp,cli',
[Parameter(HelpMessage="The build configuration (Release, Debug).")]
[string]
$Config = 'Release',
[Parameter(HelpMessage="The version number to set.")]
[string]
$Version = '',
[Parameter(HelpMessage="Architecture (native, x64).")]
[string]
$Arch = 'x86-64'
)
$ErrorActionPreference = "Stop"
$rootDir = Split-Path $script:MyInvocation.MyCommand.Path
if ($Config -ieq "Release")
{
$configFlag = ""
$buildDir = Join-Path -Path $rootDir -ChildPath "build/release"
}
elseif ($Config -ieq "Debug")
{
$configFlag = "--debug"
$buildDir = Join-Path -Path $rootDir -ChildPath "build/debug"
}
else
{
throw "Invalid -Config '$Config'; must be one of (Debug, Release)."
}
if (($Version -eq "") -and (Test-Path -Path "$rootDir\VERSION"))
{
$Version = (Get-Content "$rootDir\VERSION") + "-" + (& git rev-parse --short --verify HEAD)
}
$ponyArgs = "--define openssl_0.9.0"
Write-Host "Command: $Command"
Write-Host "Target: $Target"
Write-Host "Configuration: $Config"
Write-Host "Arch: $Arch"
Write-Host "Version: $Version"
Write-Host "Root directory: $rootDir"
Write-Host "Build directory: $buildDir"
# generate pony templated files if necessary
if (($Command -ne "clean") -and (Test-Path -Path "$rootDir\VERSION"))
{
$versionTimestamp = (Get-ChildItem -Path "$rootDir\VERSION").LastWriteTimeUtc
Get-ChildItem -Path $rootDir -Include "*.pony.in" -Recurse | ForEach-Object {
$templateFile = $_.FullName
$ponyFile = $templateFile.Substring(0, $templateFile.Length - 3)
$ponyFileTimestamp = [DateTime]::MinValue
if (Test-Path $ponyFile)
{
$ponyFileTimestamp = (Get-ChildItem -Path $ponyFile).LastWriteTimeUtc
}
if (($ponyFileTimestamp -lt $versionTimestamp) -or ($ponyFileTimestamp -lt $_.LastWriteTimeUtc))
{
Write-Host "$templateFile -> $ponyFile"
((Get-Content -Path $templateFile) -replace '%%VERSION%%', $Version) | Set-Content -Path $ponyFile
}
}
}
function Run
{
param($cmd)
Write-Host $cmd
$output = Invoke-Expression $cmd
$exitCode = $LastExitCode
if ($exitCode -ne 0) {
$output | ForEach-Object { Write-Host $_ }
exit $exitCode
}
$output | ForEach-Object { Write-Host $_ }
}
function Build
{
param($targets)
if ($targets -like 'test') {
Run("corral.exe run -- ponyc $configFlag $ponyArgs --cpu `"$Arch`" --output `"$buildDir`" `"$rootDir\eohippus\test`"")
}
if ($targets -like 'perf') {
Run("corral.exe run -- ponyc $configFlag $ponyArgs --cpu `"$Arch`" --output `"$buildDir`" `"$rootDir\eohippus\test\parser-perf`"")
}
if ($targets -like 'lsp') {
Run("corral.exe run -- ponyc $configFlag $ponyArgs --cpu `"$Arch`" --output `"$buildDir`" `"$rootDir\eohippus-lsp`"")
}
if ($targets -like 'fmt') {
Run("corral.exe run -- ponyc $configFlag $ponyArgs --cpu `"$Arch`" --output `"$buildDir`" `"$rootDir\eohippus-fmt`"")
}
if ($targets -like 'cli') {
Run("corral.exe run -- ponyc $configFlag $ponyArgs --cpu `"$Arch`" --output `"$buildDir`" `"$rootDir\eohippus-cli`"")
}
}
switch ($Command.ToLower())
{
"fetch"
{
Run('corral fetch')
break
}
"build"
{
Build($Target)
break
}
"test"
{
Build('test')
Run("$buildDir\test.exe")
break
}
"clean"
{
if (Test-Path "$buildDir")
{
Run("Remove-Item -Path `"$buildDir`" -Recurse -Force")
}
break
}
"distclean"
{
$distDir = Join-Path -Path $rootDir -ChildPath "build"
if (Test-Path $distDir)
{
Run("Remove-Item -Path `"$distDir`" -Recurse -Force")
}
Run("Remove-Item -Path `"*.lib`" -Force")
}
default
{
throw "Unknown command '$Command'; must be one of (fetch, build, test, clean, distclean)."
}
}