-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·145 lines (119 loc) · 3.01 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
#!/bin/bash
prog=$(realpath "$0")
root=$(dirname "$prog")
rc=0
source "${root}/scripts/helpers.sh"
function print_usage {
echo "Usage: $prog [options...]"
echo
echo "Available options:"
echo " -h prints this help"
echo " -b build service"
echo " -d build the docker image"
echo " -g generate mocks"
echo " -t run unit tests"
}
function go_install_tools {
do_echo tools/install.sh
}
function require_tool {
export PATH=/go/bin:"${root}/tools/bin":${PATH}
command -v "${1}" > /dev/null
if [ $? -eq 1 ]; then
log_info "${1} not found, installing"
go_install_tools
fi
log_notice "using $(command -v "$1") version $(go version -m "$(command -v "$1")" | awk '$1 == "mod" { print $3 }')"
}
function update_hash {
VERSION=${VERSION:-dev}
echo "${VERSION}" > cfg/VERSION
if [ -z "${GITHUB_SHA:-}" ]; then
if command -v git > /dev/null; then
hash=$(git rev-parse HEAD)
else
log_warning "git not found, couldn't update hash (set GITHUB_SHA)"
fi
else
hash=${GITHUB_SHA}
fi
echo "${hash}" > cfg/HASH
}
function go_build {
if [ -z "${BUILD_DEBUG:-}" ]; then
build="release"
opts=(-trimpath -ldflags '-s -w')
else
build="debug"
opts=(-gcflags 'all=-N -l')
fi
log_info "Building unwise version $(cat cfg/VERSION)/$(cat cfg/HASH) (${build} build)"
echo "${build}" > cfg/BUILD
do_echo go build "${opts[@]}" \
-o bin/unwise \
./cmd/unwise/
}
function go_test {
if [ "$(go env GOOS)" == "android" ]; then
# NOTE(daniel): `-race` is not supported on Android. This check is probably not
# exhaustive, but it's good enough for now.
log_warning "skipping race detection on Android"
opts=()
else
opts=(-race)
fi
do_echo go test "${opts[@]}" \
-coverprofile=coverage.txt \
-covermode=atomic \
./...
}
function go_generate {
require_tool mockery
require_tool gofumpt
do_echo mockery
do_echo ./scripts/gofmt.sh
}
function docker_build {
VERSION=${VERSION:-dev}
do_echo docker build \
--build-arg VERSION="${VERSION}" \
--build-arg BUILD_DEBUG="${BUILD_DEBUG}" \
-t unwise:"${VERSION}" \
-f docker/Dockerfile \
.
}
mkdir -p bin data
update_hash
if [ "$#" -eq "0" ]; then
print_usage
exit 1
fi
while [ "$#" -gt "0" ]; do
arg=$1
shift
case $arg in
-h)
print_usage
exit 0
;;
-b)
go_build
;;
-d)
docker_build
;;
-t)
go_build
go_test
;;
-g)
go_generate
;;
*)
log_error "unrecognized argument '$arg'"
print_usage
exit 1
;;
esac
done
exit "${rc}"