-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·97 lines (85 loc) · 1.23 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
#!/usr/bin/env bash
errcheck() {
exitcd=$1
if [[ "$exitcd" != "0" ]]; then
exit $exitcd
fi
}
clean() {
go clean --cache
errcheck $?
}
format() {
go fmt ./...
errcheck $?
}
compile() {
go vet ./...
errcheck $?
go build ./...
errcheck $?
}
test() {
go test -v $(go list ./... | grep -v /benchmark)
errcheck $?
}
unit() {
go test -v -run $1 $(go list ./... | grep -v /benchmark)
errcheck $?
}
cover() {
mkdir -p coverage
errcheck $?
go test -coverprofile=coverage/cover.out $(go list ./... | grep -v /benchmark)
errcheck $?
go tool cover -html=coverage/cover.out -o coverage/cover.html
errcheck $?
}
bench() {
local dir=$1
if [[ "$dir" == "" ]]; then
dir="."
fi
pushd $dir
go test -bench . --benchmem
errcheck $?
popd
}
if [[ "$#" == "0" ]]; then
clean
format
compile
test
cover
elif [[ "$1" == "unit" ]]; then
unit $2
elif [[ "$1" == "bench" ]]; then
bench $2
else
for a in "$@"; do
case "$a" in
clean)
clean
;;
format)
format
;;
compile)
compile
;;
test)
test
;;
cover)
cover
;;
'')
compile
;;
*)
echo "Bad task: $a"
exit 1
;;
esac
done
fi