forked from alibaba/MongoShake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·100 lines (82 loc) · 2.42 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
#!/usr/bin/env bash
set -o errexit
# compile specified module
modules=(collector receiver)
tags=""
# older version Git don't support --short !
if [ -d ".git" ];then
#branch=`git symbolic-ref --short -q HEAD`
branch=$(git symbolic-ref -q HEAD | awk -F'/' '{print $3;}')
cid=$(git rev-parse HEAD)
else
branch="unknown"
cid="0.0"
fi
branch=$branch","$cid
output=./bin/
# make sure we're in the directory where the script lives
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$SCRIPT_DIR"
rm -rf ${output}
GOPATH=$(pwd)
export GOPATH
#compile_line='-race'
compile_line=''
if [ -z "$DEBUG" ]; then
DEBUG=0
fi
info="mongoshake/common.BRANCH=$branch"
# inject program information about compile
if [ $DEBUG -eq 1 ]; then
echo "[ BUILD DEBUG ]"
info=$info',debug'
else
echo "[ BUILD RELEASE ]"
info=$info",release"
fi
# golang version
goversion=$(go version | awk -F' ' '{print $3;}')
info=$info","$goversion
bigVersion=$(echo $goversion | awk -F'[o.]' '{print $2}')
midVersion=$(echo $goversion | awk -F'[o.]' '{print $3}')
if [ $bigVersion -lt "1" -o $bigVersion -eq "1" -a $midVersion -lt "9" ]; then
echo "go version[$goversion] must >= 1.9"
exit 1
fi
t=$(date "+%Y-%m-%d_%H:%M:%S")
info=$info","$t
run_builder='go build -v'
goos=(linux darwin windows)
for g in "${goos[@]}"; do
export GOOS=$g
echo "try build goos=$g"
if [ $g != "windows" ]; then
build_info="$info -X mongoshake/common.SIGNALPROFILE=31 -X mongoshake/common.SIGNALSTACK=30"
else
build_info=$info
fi
for i in "${modules[@]}" ; do
echo "Build ""$i"
if [ $DEBUG -eq 1 ]; then
$run_builder ${compile_line} -ldflags "-X $build_info" -gcflags='-N -l' -o "bin/$i.$g" -tags "debug" "src/mongoshake/$i/main/$i.go"
else
$run_builder ${compile_line} -ldflags "-X $build_info" -o "bin/$i.$g" "src/mongoshake/$i/main/$i.go"
fi
# execute and show compile messages
if [ -f ${output}/"$i" ];then
${output}/"$i"
fi
done
echo "build $g successfully!"
done
# *.sh
cp scripts/start.sh ${output}/
cp scripts/stop.sh ${output}/
cp scripts/mongoshake-stat ${output}/
cp scripts/comparison.py ${output}/
if [ "Linux" == "$(uname -s)" ];then
# hypervisor
gcc -Wall -O3 scripts/hypervisor.c -o ${output}/hypervisor -lpthread
elif [ "Darwin" == "$(uname -s)" ];then
printf "\\nWARNING !!! MacOS doesn't supply hypervisor\\n"
fi