-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmake.ps1
231 lines (201 loc) · 6.05 KB
/
make.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
Param(
[Parameter(Position=0, HelpMessage="The action to take (fetch, build, test, buildtest, install, package, clean).")]
[string]
$Command = 'build',
[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",
[Parameter(HelpMessage="Directory to install to.")]
[string]
$Destdir = "build/install"
)
$ErrorActionPreference = "Stop"
$target = "ponyup" # The name of the target executable.
$targetPath = "cmd" # The source package directory.
$testPath = "../test" # The path of the tests package relative to $targetPath.
$isLibrary = $false
$rootDir = Split-Path $script:MyInvocation.MyCommand.Path
$srcDir = Join-Path -Path $rootDir -ChildPath $targetPath
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 path '$Config'; must be one of (Debug, Release)."
}
switch ($Version)
{
"release" { $Version = Get-Content "$rootDir\VERSION" }
"nightly" { $Version = "nightly" + (Get-Date).ToString("yyyyMMdd") }
default { $Version = (Get-Content "$rootDir\VERSION") + "-" + (& git rev-parse --short --verify HEAD) }
}
$ponyArgs = "--define openssl_0.9.0"
Write-Host "Configuration: $Config"
Write-Host "Version: $Version"
Write-Host "Root directory: $rootDir"
Write-Host "Source directory: $srcDir"
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 $srcDir -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 BuildTarget
{
$binaryFile = Join-Path -Path $buildDir -ChildPath "$target.exe"
$binaryTimestamp = [DateTime]::MinValue
if (Test-Path $binaryFile)
{
$binaryTimestamp = (Get-ChildItem -Path $binaryFile).LastWriteTimeUtc
}
:buildFiles foreach ($file in (Get-ChildItem -Path "$srcDir\.." -Include "*.pony" -Recurse))
{
if ($binaryTimestamp -lt $file.LastWriteTimeUtc)
{
Write-Host "corral run -- ponyc $configFlag $ponyArgs --cpu `"$Arch`" --output `"$buildDir`" --bin-name `"$target`" `"$srcDir`""
$output = (corral run -- ponyc $configFlag $ponyArgs --cpu "$Arch" --output "$buildDir" --bin-name "$target" "$srcDir")
$output | ForEach-Object { Write-Host $_ }
if ($LastExitCode -ne 0) { throw "Error" }
break buildFiles
}
}
}
function BuildTest
{
$testTarget = "test.exe"
$testFile = Join-Path -Path $buildDir -ChildPath $testTarget
$testTimestamp = [DateTime]::MinValue
if (Test-Path $testFile)
{
$testTimestamp = (Get-ChildItem -Path $testFile).LastWriteTimeUtc
}
:testFiles foreach ($file in (Get-ChildItem -Path "$srcDir\.." -Include "*.pony" -Recurse))
{
if ($testTimestamp -lt $file.LastWriteTimeUtc)
{
$testDir = Join-Path -Path $srcDir -ChildPath $testPath
Write-Host "corral run -- ponyc $configFlag $ponyArgs --cpu `"$Arch`" --output `"$buildDir`" --bin-name `"test`" `"$testDir`""
$output = (corral run -- ponyc $configFlag $ponyArgs --cpu "$Arch" --output "$buildDir" --bin-name test "$testDir")
$output | ForEach-Object { Write-Host $_ }
if ($LastExitCode -ne 0) { throw "Error" }
break testFiles
}
}
Write-Output "$testTarget is built" # force function to return a list of outputs
return $testFile
}
switch ($Command.ToLower())
{
"fetch"
{
Write-Host "corral fetch"
$output = (corral fetch)
$output | ForEach-Object { Write-Host $_ }
if ($LastExitCode -ne 0) { throw "Error" }
break
}
"build"
{
if (-not $isLibrary)
{
BuildTarget
}
else
{
Write-Host "$target is a library; nothing to build."
}
break
}
"buildtest"
{
BuildTest
break
}
"test"
{
if ([Environment]::Is64BitOperatingSystem) {
$env:PONYUP_PLATFORM = 'x86_64-pc-windows-msvc'
}
else {
$env:PONYUP_PLATFORM = 'x86-pc-windows-msvc'
}
$testFile = (BuildTest)[-1]
Write-Host "$testFile --sequential"
& "$testFile" --sequential
if ($LastExitCode -ne 0) { throw "Error" }
break
}
"clean"
{
if (Test-Path "$buildDir")
{
Write-Host "Remove-Item -Path `"$buildDir`" -Recurse -Force"
Remove-Item -Path "$buildDir" -Recurse -Force
}
break
}
"install"
{
if (-not $isLibrary)
{
$binDir = Join-Path -Path $Destdir -ChildPath "bin"
if (-not (Test-Path $binDir))
{
mkdir "$binDir"
}
$binFile = Join-Path -Path $buildDir -ChildPath "$target.exe"
Copy-Item -Path $binFile -Destination $binDir -Force
}
else
{
Write-Host "$target is a library; nothing to install."
}
break
}
"package"
{
if (-not $isLibrary)
{
$binDir = Join-Path -Path $Destdir -ChildPath "bin"
$package = "$target-x86-64-pc-windows-msvc.zip"
Write-Host "Creating $package..."
Compress-Archive -Path $binDir -DestinationPath "$buildDir\..\$package" -Force
}
else
{
Write-Host "$target is a library; nothing to package."
}
break
}
default
{
throw "Unknown command '$Command'; must be one of (fetch, build, test, buildtest, install, package, clean)."
}
}