forked from polarismesh/polaris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·59 lines (45 loc) · 1.16 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
#!/bin/bash
set -e
if [[ $(uname) == 'Darwin' ]]; then
realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
md5sum() {
md5 $*
}
fi
workdir=$(dirname $(realpath $0))
version=$(cat version 2>/dev/null)
bin_name="polaris-server"
if [ $# == 1 ]; then
version=$1
fi
if [ "${GOOS}" == "windows" ]; then
bin_name="polaris-server.exe"
fi
if [ "${GOOS}" == "" ]; then
GOOS=$(go env GOOS)
fi
if [ "${GOARCH}" == "" ]; then
GOARCH=$(go env GOARCH)
fi
folder_name="polaris-server-release_${version}.${GOOS}.${GOARCH}"
pkg_name="${folder_name}.zip"
echo "GOOS is ${GOOS}, binary name is ${bin_name}"
cd $workdir
# 清理环境
rm -rf ${folder_name}
rm -f "${pkg_name}"
rm -f ${bin_name}
# 禁止 CGO_ENABLED 参数打开
export CGO_ENABLED=0
build_date=$(date "+%Y%m%d.%H%M%S")
package="github.com/polarismesh/polaris-server/common/version"
go build -o ${bin_name} -ldflags="-X ${package}.Version=${version} -X ${package}.BuildDate=${build_date}"
# 打包
mkdir -p ${folder_name}
cp ${bin_name} ${folder_name}
cp polaris-server.yaml ${folder_name}
cp -r tool ${folder_name}/
zip -r "${pkg_name}" ${folder_name}
md5sum ${pkg_name} >"${pkg_name}.md5sum"