-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·122 lines (89 loc) · 2.65 KB
/
build.sh
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
#!/usr/bin/env bash
dotnet restore
echo ""
echo "Building Plugin"
echo ""
# Build the Plugin
if ! ./build-plugin.sh; then
echo "Building the Plugin Failed"
exit 1
fi
echo ""
echo "Building UX"
echo ""
rm -rf ./build/UX/*
dotnet publish Wheel-Addon.UX.Desktop -c Release -r win-x64 --self-contained="false" -o ./build/UX/win-x64/ $@ || exit 1
dotnet publish Wheel-Addon.UX.Desktop -c Release -r win-x86 --self-contained="false" -o ./build/UX/win-x86/ $@ || exit 1
dotnet publish Wheel-Addon.UX.Desktop -c Release -r win-arm64 --self-contained="false" -o ./build/UX/win-arm64/ $@ || exit 1
dotnet publish Wheel-Addon.UX.Desktop -c Release -r linux-x64 --self-contained="false" -o ./build/UX/linux-x64/ $@ || exit 1
dotnet publish Wheel-Addon.UX.Desktop -c Release -r linux-arm64 --self-contained="false" -o ./build/UX/linux-arm64/ $@ || exit 1
dotnet publish Wheel-Addon.UX.Desktop -c Release -r osx-x64 --self-contained="false" -o ./build/UX/osx-x64/ $@ || exit 1
dotnet publish Wheel-Addon.UX.Desktop -c Release -r osx-arm64 --self-contained="false" -o ./build/UX/osx-arm64/ $@ || exit 1
# if error is 0 then exit
if [ $? -eq 0 ]; then
echo ""
else
echo "Build Failed"
exit 1
fi
# Do a final cleanup, remove all OpenTabletDriver*.pdb files
find ./build/UX -name "OpenTabletDriver*.pdb" -type f -delete
# zip all the files
(
cd ./build/UX
for f in *; do
if [ -d "$f" ]; then
echo "Zipping $f"
(
cd "$f"
zip -r "../Wheel-Addon.UX-$f.zip" *
)
fi
done
)
echo ""
echo "Building Installer"
echo ""
dotnet publish Wheel-Addon.Installer -c Debug -o ./temp/installer/ $@ || exit 1
if [ ! -d "./build/installer" ]; then
mkdir ./build/installer/
else
rm -rf ./build/installer/*
fi
mv ./temp/installer/Wheel-Addon.Installer.dll ./build/installer/Wheel-Addon.Installer.dll
# zip Wheel-Addon.Installer.dll
(
cd build/installer
zip -r Wheel-Addon.Installer.zip Wheel-Addon.Installer.dll
)
rm -rf ./temp
echo ""
echo "Computing Hashes"
echo ""
# Append all hashes to hashes.txt
(
cd ./build
output="../hashes.txt"
(
cd ./installer
# Compute Plugin Hash
sha256sum Wheel-Addon.Installer.zip > $output
)
echo "" >> hashes.txt
(
cd ./UX
# Compute all UX Hashes
for os in win linux osx; do
for arch in x64 x86 arm64; do
name="Wheel-Addon.UX-$os-$arch.zip"
echo "Computing $name"
if [ -f "$name" ]; then
sha256sum $name >> $output
fi
done
done
)
)
echo ""
echo "Done"
echo ""