-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
make.ps1
199 lines (168 loc) · 4.73 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
Param(
[Parameter(Position=0, HelpMessage="The action to take (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"
$rootDir = Split-Path $script:MyInvocation.MyCommand.Path
$srcDir = Join-Path -Path $rootDir -ChildPath "corral"
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 "")
{
$Version = (Get-Content "$rootDir\VERSION") + "-" + (git rev-parse --short --verify HEAD^)
}
Write-Output "Configuration: $Config"
Write-Output "Version: $Version"
Write-Output "Root directory: $rootDir"
Write-Output "Source directory: $srcDir"
Write-Output "Build directory: $buildDir"
# generate pony templated files if necessary
if ($Command -ne "clean")
{
$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-Output "$templateFile -> $ponyFile"
((Get-Content -Path $templateFile) -replace '%%VERSION%%', $Version) | Set-Content -Path $ponyFile
}
}
}
function BuildCorral
{
$binaryFile = Join-Path -Path $buildDir -ChildPath "corral.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)
{
ponyc "$configFlag" --cpu "$Arch" --output "$buildDir" "$srcDir"
break buildFiles
}
}
}
function BuildTest
{
$testFile = Join-Path -Path $buildDir -ChildPath "test.exe"
$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 "test"
Write-Output "ponyc `"$configFlag`" --cpu `"$Arch`" --output `"$buildDir`" --bin-name `"test`" `"$testDir`""
ponyc "$configFlag" --cpu "$Arch" --output "$buildDir" --bin-name test "$testDir"
break testFiles
}
}
Write-Output "test.exe is built"
return $testFile
}
switch ($Command.ToLower())
{
"build"
{
BuildCorral
break
}
"buildtest"
{
BuildTest
break
}
"test"
{
BuildCorral
$testFile = (BuildTest)[-1]
& "$testFile" --exclude=integration --sequential
$env:CORRAL_BIN = Join-Path -Path $buildDir -ChildPath "corral.exe"
& "$testFile" --only=integration --sequential
break
}
"unit-tests"
{
BuildCorral
$testFile = (BuildTest)[-1]
& "$testFile" --exclude=integration --sequential
break
}
"integration-tests"
{
BuildCorral
$testFile = (BuildTest)[-1]
$env:CORRAL_BIN = Join-Path -Path $buildDir -ChildPath "corral.exe"
& "$testFile" --only=integration --sequential
break
}
"clean"
{
if (Test-Path "$buildDir")
{
Remove-Item -Path "$buildDir" -Recurse -Force
}
break
}
"install"
{
$binDir = Join-Path -Path $Destdir -ChildPath "bin"
if (-not (Test-Path $binDir))
{
mkdir "$binDir"
}
$corral = Join-Path -Path $buildDir -ChildPath "corral.exe"
Copy-Item -Path $corral -Destination $binDir -Force
break
}
"package"
{
$binDir = Join-Path -Path $Destdir -ChildPath "bin"
$package = "corral-x86-64-pc-windows-msvc.zip"
Write-Output "Creating $package..."
Compress-Archive -Path $binDir -DestinationPath "$buildDir\..\$package" -Force
break
}
default
{
throw "Unknown command '$Command'; must be one of (build, test, buildtest, install, package, clean)"
}
}