-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
build-release.sh
executable file
·83 lines (67 loc) · 2.35 KB
/
build-release.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
#!/bin/bash
set -eEuo pipefail
eval "$(go env)"
OUT_DIR="${1-dist}"
# To override the latest git tag as the version, pass something else as the second arg.
VERSION=${2:-$(git describe --tags --always --dirty)}
# To overwrite the version details, pass something as the third arg. Empty string disables it.
VERSION_DETAILS=${3-"$(date -u +"%FT%T%z")/$(git describe --always --long --dirty)"}
build() {
local ALIAS="$1" SUFFIX="${2}" # Any other arguments are passed to the go build command as env vars
local NAME="k6-${VERSION}-${ALIAS}"
local BUILD_ENV=("${@:3}")
local BUILD_ARGS=(-o "${OUT_DIR}/${NAME}/k6${SUFFIX}" -trimpath)
if [ -n "$VERSION_DETAILS" ]; then
BUILD_ARGS+=(-ldflags "-X github.com/loadimpact/k6/lib/consts.VersionDetails=$VERSION_DETAILS")
fi
echo "- Building platform: ${ALIAS} (" "${BUILD_ENV[@]}" "go build" "${BUILD_ARGS[@]}" ")"
mkdir -p "${OUT_DIR}/${NAME}"
# Subshell to not mess with the current env vars or CWD
(
export "${BUILD_ENV[@]}"
# Build a binary
go build "${BUILD_ARGS[@]}"
)
}
package() {
local ALIAS="$1" FMT="$2"
local NAME="k6-${VERSION}-${ALIAS}"
echo "- Creating ${NAME}.${FMT} package..."
case $FMT in
deb|rpm)
# The go-bin-* tools expect the binary in /tmp/
[ ! -r /tmp/k6 ] && cp "${OUT_DIR}/${NAME}/k6" /tmp/k6
"go-bin-${FMT}" generate --file "packaging/${FMT}.json" -a amd64 \
--version "${VERSION#v}" -o "${OUT_DIR}/k6-${VERSION}-amd64.${FMT}"
;;
tgz)
tar -C "${OUT_DIR}" -zcf "${OUT_DIR}/${NAME}.tar.gz" "$NAME"
;;
zip)
(cd "${OUT_DIR}" && zip -rq9 - "$NAME") > "${OUT_DIR}/${NAME}.zip"
;;
*)
echo "Unknown format: $FMT"
return 1
;;
esac
}
cleanup() {
find "$OUT_DIR" -mindepth 1 -maxdepth 1 -type d -exec rm -rf {} \;
echo "--- Cleaned ${OUT_DIR}"
}
trap cleanup EXIT
echo "--- Building Release: ${VERSION}"
mkdir -p "$OUT_DIR"
build mac "" GOOS=darwin GOARCH=amd64
build win32 .exe GOOS=windows GOARCH=386
build win64 .exe GOOS=windows GOARCH=amd64
build linux32 "" GOOS=linux GOARCH=386 CGO_ENABLED=0
build linux64 "" GOOS=linux GOARCH=amd64 CGO_ENABLED=0
package linux32 tgz
package linux64 tgz
package linux64 rpm
package linux64 deb
package mac zip
package win32 zip
package win64 zip