-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·226 lines (209 loc) · 4.71 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
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
#!/bin/bash
set -e
APP_NAME=github2gogs
DIST_DIR=dist
MAIN_DIR=.
BUILD_TIME=$(date "+%F %T %Z")
WINDOWS_ARCH=386,amd64
LINUX_ARCH=386,amd64,arm,arm64
CURRENT_ARCH=$(go env GOARCH)
APP_VERSION=
getversion() {
git status > /dev/null 2>&1
if [ $? -eq 0 ]; then
head_id=$(git log --pretty=oneline | head -n 1 | cut -d " " -f 1)
latest_tag=$(git tag --sort=v:refname | tail -n 1)
if [ -n "$latest_tag" ]; then
tag_id=$(git log --pretty=oneline $latest_tag | head -n 1 | cut -d " " -f 1)
if [ "$tag_id" != "$head_id" ]; then
APP_VERSION=$latest_tag+${head_id::12}
else
APP_VERSION=$latest_tag
fi
else
APP_VERSION=dev-${head_id::12}
fi
else
APP_VERSION=dev
fi
}
setgitconfig() {
if [ -z "$(git config --global --get-all versionsort.prereleaseSuffix)" ]; then
git config --global --add versionsort.prereleaseSuffix -alpha
[ $? -eq 0 ] && echo "added prerelease suffix: -alpha"
git config --global --add versionsort.prereleaseSuffix -beta
[ $? -eq 0 ] && echo "added prerelease suffix: -beta"
git config --global --add versionsort.prereleaseSuffix -rc
[ $? -eq 0 ] && echo "added prerelease suffix: -rc"
fi
}
prebuild() {
go generate
}
gobuild() {
echo "building $1 $2"
ext=""
append_suffix=""
if [ "$1" == "windows" ]; then
ext=".exe"
fi
if [ -n "$exe_suffix" ]; then
append_suffix=_$1_$2
fi
target_dir=$DIST_DIR/$1/$2
rm -rf $target_dir
if [ -z "$build_native" ]; then
export GOOS=$1
export GOARCH=$2
fi
out_bin=$target_dir/${APP_NAME}${append_suffix}${ext}
go build -o $out_bin \
-ldflags \
"\
-s -w \
-X 'main.appName=${APP_NAME}' \
-X 'main.appVersion=${APP_VERSION}' \
-X 'main.buildTime=${BUILD_TIME}' \
" \
$MAIN_DIR
if [ -n "$build_deb" -a "$(go env GOOS)" == "linux" ]; then
build_deb $(go env GOARCH) $out_bin
fi
}
build_deb() {
echo "build deb package for $1"
temproot="dist/linux/temproot"
mkdir -p $temproot
[ -d deb/root ] && cp -r deb/root/* $temproot/
mkdir -p $temproot/usr/local/bin
cp $2 $temproot/usr/local/bin/
fpm_arg=
if [ -x deb/after-install ]; then
fpm_arg="$fpm_arg --after-install deb/after-install"
fi
if [ -x deb/before-install ]; then
fpm_arg="$fpm_arg --before-install deb/before-install"
fi
if [ -x deb/after-remove ]; then
fpm_arg="$fpm_arg --after-remove deb/after-remove"
fi
if [ -x deb/before-remove ]; then
fpm_arg="$fpm_arg --before-remove deb/before-remove"
fi
fpm_arch=$1
if [ "$1" == "arm" ]; then
fpm_arch=armhf
fi
fpm -s dir -t deb -a $fpm_arch $fpm_arg -p dist/linux/$1/${APP_NAME}_${APP_VERSION}_$1.deb -n ${APP_NAME} -v ${APP_VERSION#*v} -C $temproot .
rm -rf $temproot
}
showhelp() {
echo "Usage: build.sh [-m] [-w] [-l] [-s] [-p]"
echo " -m build macos executable of amd64"
echo " -w build windows executable of current arch ($CURRENT_ARCH)"
echo " -w[=<arch>,...] build windows executables of specific arch ($WINDOWS_ARCH)"
echo " -l build linux executable of current arch ($CURRENT_ARCH)"
echo " -l[=<arch>,...] build linux executables of specific arch ($LINUX_ARCH)"
echo " -s append os type and arch suffix of executable name (use 'foo_linux_amd64' instead of 'foo')"
echo " -p do not perform prebuild"
echo " -n build native arch"
echo " --deb build deb package (only for linux)"
echo " --set-git-config set value of versionsort.prereleaseSuffix"
}
archContains() {
str=$1
array=(${str//,/ })
for var in ${array[@]}
do
if [ "$var" == "$2" ]; then
echo "true"
return
fi
done
}
cd "$( dirname "$0" )"
if [ $# -gt 0 ]; then
for arg in $*
do
case $arg in
-m)
build_mac=1
;;
-w)
build_windows=$CURRENT_ARCH
;;
-w=*)
build_windows=${arg#*-w=}
;;
-l)
build_linux=$CURRENT_ARCH
;;
-l=*)
build_linux=${arg#*-l=}
;;
-s)
exe_suffix=1
;;
-p)
donot_prebuild=1
;;
-n)
build_native=1
;;
--deb)
build_deb=1
;;
--set-git-config)
setgitconfig
exit 0
;;
*)
echo "unknow arg: $arg"
showhelp
exit 1
;;
esac
done
else
showhelp
exit 0
fi
getversion
if [ -n "$donot_prebuild" ]; then
echo "skip prebuild"
else
prebuild
fi
echo "Packing $APP_NAME with version $APP_VERSION"
if [ -n "$build_native" ]; then
gobuild
exit 0
fi
export CGO_ENABLED=0
if [ -n "$build_mac" ]; then
gobuild darwin amd64
fi
if [ -n "$build_linux" ]; then
array=(${build_linux//,/ })
for var in ${array[@]}
do
cont=$(archContains $LINUX_ARCH $var)
if [ -n "$cont" ]; then
gobuild linux $var
else
echo "unknow arch $var, skip"
fi
done
fi
if [ -n "$build_windows" ]; then
array=(${build_windows//,/ })
for var in ${array[@]}
do
cont=$(archContains $WINDOWS_ARCH $var)
if [ -n "$cont" ]; then
gobuild windows $var
else
echo "unknow arch $var, skip"
fi
done
fi