This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
forked from yvt/openspades
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.ps1
283 lines (239 loc) · 6.17 KB
/
build.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# Intended for AppVeyor CI
# You may try to use it to build locally,
# but your milage may vary.
# TODO: Need help with this
# Parameters:
# Defaults to OpenSpades if no argument is given
# O - OpenSpades
# P - OpenSpades+
# N - NucetoSpades
# Z - ZeroSpades
# C - Custom (provide Git url)
# L - Local
#region AppVeyor CI Failure
#$ErrorActionPreference = 'Stop'
#-- Performing Test HAS_MSGHDR_FLAGS
#-- Performing Test HAS_MSGHDR_FLAGS - Failed
#-- Check size of socklen_t
#-- Check size of socklen_t - failed
#The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: CMake Warning (dev) in Resources/CMakeLists.txt:
#
#Note: does not actually affect build, probably
#endregion
#region Windows
function BuildWindows
{
# Based off of https://github.com/Conticop/OpenSpades-assets/blob/main/build-openspades.ps1
Write-Host "Building for Windows..."
$RepoRoot = "" + (Get-Location)
try
{
Write-Host "Installing dependencies using VCPkg"
vcpkg/bootstrap-vcpkg.bat -disableMetrics
vcpkg/vcpkg install "@vcpkg_x86-windows.txt"
}
catch
{
ErrorDependencies
}
Write-Host "Configuring build using CMake"
try { cmake -A Win32 -D "CMAKE_BUILD_TYPE=Release" -D "CMAKE_TOOLCHAIN_FILE=$RepoRoot/vcpkg/scripts/buildsystems/vcpkg.cmake" -D "VCPKG_TARGET_TRIPLET=x86-windows-static" "-S$RepoRoot" "-B$RepoRoot/build" }
catch { ErrorCMake }
Write-Host "Building $OpenSpadesFlavorName"
try { cmake --build "$RepoRoot/build" --config Release --parallel 16 }
catch { throw ErrorBuild }
# STUPID LET APPVEYOR DO THIS
#Write-Host "Zipping binary"
#Compress-Archive -path "C:\projects\openspadesplus\openspadesplus\build\bin\Release" -DestinationPath "C:\Windows.zip"
BuildSuccess
}
#endregion
#region Linux check distro
function BuildLinux
{
Write-Host "Building for GNU/Linux..."
$Distro = lsb_release -i
$Distro = $Distro.substring(16)
switch ($Distro)
{
"Ubuntu" { BuildUbuntu; break}
"Debian" { BuildDebian; break}
"Arch" { BuildArch; break}
"Manjaro" { BuildArch; break}
default { ErrorUnknownDistro; break}
}
}
#endregion
#region Debian
function BuildDebian
{
}
#endregion
#region Ubuntu
function BuildUbuntu
{
Write-Host "Building for Ubuntu..."
Write-Host "Updating packages and installing dependencies using apt-get"
try
{
sudo apt-get update
sudo apt-get install ninja-build pkg-config libglew-dev libcurl3-openssl-dev libsdl2-dev libsdl2-image-dev libalut-dev xdg-utils libfreetype6-dev libopus-dev libopusfile-dev cmake imagemagick libjpeg-dev libxinerama-dev libxft-dev -y
sudo apt-get upgrade -y
}
catch
{
Write-Host "Installing and updating dependencies failed"
ErrorDependencies
}
Write-Host "Creating build directory"
mkdir build
Push-Location build
Write-Host "Configuring build using CMake"
try { cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS="-O2" }
catch { ErrorCMake }
Write-Host "Building using Ninja"
try { ninja }
catch { ErrorBuild }
cp Resources bin
Write-Host "Zipping binary"
zip -1 -r Linux.zip bin
Write-Host "Zipping resources"
zip -1 -r Resources.zip Resources
BuildSuccess
}
#endregion
#region Arch/Manjaro
function BuildArch
{
}
#endregion
#region Mac OS
function BuildMacOS
{
Write-Host "Building for MacOS..."
Write-Host "Setting variable"
$RepoRoot = "" + (Get-Location)
Write-Host "Installing dependencies using Homebrew and VCPkg"
brew install ninja wget
vcpkg/bootstrap-vcpkg.sh -disableMetrics
vcpkg/vcpkg install "@vcpkg_x86_64-darwin.txt"
Write-Host "Configuring using CMake"
try { cmake -G Ninja .. -D CMAKE_BUILD_TYPE=Release -D CMAKE_OSX_ARCHITECTURES=x86_64 -D CMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake -D VCPKG_TARGET_TRIPLET=x64-osx "-S$RepoRoot" "-B$RepoRoot/build" }
catch { throw "CMake failed" }
Write-Host "Building using Ninja"
Push-Location build
try { ninja }
catch { throw "Build failed" }
BuildSuccess
}
#endregion
#region Success
function BuildSuccess
{
Write-Host "Build finished"
exit 0
}
#endregion
#region Errors
function ErrorDependencies
{
throw "Failed updating or installing dependencies"
exit 417
}
function ErrorUnknown
{
throw "Unknown OS - cannot continue"
exit 404
}
function ErrorUnknownDistro
{
throw "Unknown GNU/Linux Distro ($Distro) - cannot continue"
exit 404
}
function ErrorCMake
{
throw "Error generating build files with CMake"
exit 400
}
function ErrorBuild
{
throw "Error building"
exit 400
}
#endregion
#region Warnings
function WarningPullFailed
{
#TODO: throw or write-error
#or write-host???????
#how does powershell work anyways????
Write-Host "Failed pulling latest changes from Git repository\nProceeding anyways"
}
#endregion
#region Pick the correct build script to run
# TODO: How does this work? Help needed
#param
#(
# [Parameter()]
# [String] $OpenSpadesFlavor,
# [Parameter()]
# [String] $URL,
# [Parameter()]
# [String] $DirectoryName
#)
#
#$OpenSpadesFlavorName
#
#switch ( $OpenSpadesFlavor )
#{
# "C" { Write-Host "Building OpenSpades (custom)"; $OpenSpadesFlavorName = "Custom"; break;}
# "O" { Write-Host "Building OpenSpades"; $URL = "https://github.com/yvt/openspades.git"; $OpenSpadesFlavorName = "OpenSpades"; $DirectoryName = "OpenSpades"; break;}
# "P" { Write-Host "Building OpenSpades+"; $URL = "https://github.com/nonperforming/openspadesplus.git"; $OpenSpadesFlavorName = "OpenSpadesPlus"; $DirectoryName = "OpenSpadesPlus"; break;}
#}
#
#Write-Host "Cloning/pulling changes from Git repository [$URL] - ($OpenSpadesFlavorName)"
#
#if (Test-Path "$DirectoryName")
#{
# Write-Host "Repository already exists on drive!"
#
# Push-Location $DirectoryName
#
# try
# {
# git pull
# }
# catch
# {
# WarningPullFailed
# }
#
#}
#else
#{
# Write-Host "Repository does not exist on drive! Cloning repository..."
#
# git clone $URL $DirectoryName;
# Push-Location $DirectoryName
#}
#
if ($isWindows)
{
BuildWindows
}
elseif ($isLinux)
{
BuildLinux
}
elseif ($isMacOS)
{
BuildMacOS
Push-Location bin
Write-Host "Zipping binary"
zip -1 -r MacOS.zip OpenSpades.app
}
else
{
ErrorUnknown
}
#endregion