-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.py
executable file
·66 lines (53 loc) · 1.83 KB
/
build.py
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
import subprocess
import os
if os.name == 'nt':
import pyuac
def patcher(undo = False):
patches = [] # we don't need any patches for now
for patch in patches:
filePath = ""
if os.name == 'nt':
filePath = patch['file_path_win']
else:
filePath = patch['file_path_lin']
with open(filePath, 'r', encoding="utf8") as file:
filedata = file.read()
if undo == False:
filedata = filedata.replace(patch['find'], patch['replace'])
else:
filedata = filedata.replace(patch['replace'], patch['find'])
with open(filePath, 'w', encoding="utf8") as file:
file.write(filedata)
def cleanGoBuildCache():
subprocess.check_output(["go", "clean", "-cache"])
def build():
sys_env = os.environ.copy()
print("Building for Linux amd64...")
sys_env['GOARCH'] = "amd64"
sys_env['GOOS'] = "linux"
sys_env['CGO_ENABLED'] = "0"
subprocess.check_output(["go", "build", "-o", "bin/emoji-cdn_linux_amd64"], env=sys_env)
print("Building for Linux arm64...")
sys_env['GOARCH'] = "arm64"
sys_env['GOOS'] = "linux"
subprocess.check_output(["go", "build", "-o", "bin/emoji-cdn_linux_arm64"], env=sys_env)
print("Building for Windows amd64...")
sys_env['GOARCH'] = "amd64"
sys_env['GOOS'] = "windows"
subprocess.check_output(["go", "build", "-o", "bin/emoji-cdn_windows_amd64.exe"], env=sys_env)
def main():
patcher()
cleanGoBuildCache()
build()
patcher(True)
input("Done. Press any key to exit.")
if __name__ == "__main__":
if os.name == 'nt':
if not pyuac.isUserAdmin():
# https://stackoverflow.com/a/19719292/8524395
print("Re-launching as admin...")
pyuac.runAsAdmin()
else:
main()
else:
main()