-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmake.ps1
223 lines (194 loc) · 5.83 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
Param(
[Parameter(Position=0, Mandatory=$true, HelpMessage="The action to take (build, test, install, package, clean).")]
[string]
$Command,
[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 = "appdirs" # The name of the source package, and the base name of the .exe file that is built if this is a program, not a library.
$testPath = "." # The path of the tests package relative to the $target directory.
$isLibrary = $true
$rootDir = Split-Path $script:MyInvocation.MyCommand.Path
$srcDir = Join-Path -Path $rootDir -ChildPath $target
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)."
}
if (($Version -eq "") -and (Test-Path -Path "$rootDir\VERSION"))
{
$Version = (Get-Content "$rootDir\VERSION") + "-" + (& git 'rev-parse' '--short' '--verify' 'HEAD^')
}
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.exe fetch"
$output = (corral.exe fetch)
Write-Host $output
if ($LastExitCode -ne 0) { throw "Error" }
Write-Host "corral.exe run -- ponyc.exe $configFlag --cpu `"$Arch`" --output `"$buildDir`" `"$srcDir`""
$output = (corral.exe run -- ponyc.exe $configFlag --cpu "$Arch" --output "$buildDir" "$srcDir")
Write-Host $output
# TODO: if ($LastExitCode -ne 0) { throw "Error" }
break buildFiles
}
}
}
function BuildTest
{
$testTarget = "test.exe"
if ($testPath -eq ".")
{
$testTarget = "$target.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)
{
Write-Host "corral.exe fetch"
$output = (corral.exe fetch)
Write-Host $output
if ($LastExitCode -ne 0) { throw "Error" }
$testDir = Join-Path -Path $srcDir -ChildPath $testPath
Write-Host "corral.exe run -- ponyc.exe $configFlag --cpu `"$Arch`" --output `"$buildDir`" `"$testDir`""
$output = (corral.exe run -- ponyc.exe $configFlag --cpu "$Arch" --output "$buildDir" "$testDir")
Write-Host $output
# TODO: when corral/ponyc wierdness is fixed: if ($LastExitCode -ne 0) { throw "Error" }
break testFiles
}
}
Write-Output "$testTarget.exe is built" # force function to return a list of outputs
return $testFile
}
switch ($Command.ToLower())
{
"build"
{
if (-not $isLibrary)
{
BuildTarget
}
else
{
Write-Host "$target is a library; nothing to build."
}
break
}
"test"
{
if (-not $isLibrary)
{
BuildTarget
}
$testFile = (BuildTest)[-1]
Write-Host "$testFile"
& "$testFile"
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 (build, test, install, package, clean)."
}
}