forked from grafana/k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-release.sh
executable file
·87 lines (70 loc) · 2.59 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
84
85
86
87
#!/bin/bash
set -eEuo pipefail
eval "$(go env)"
set -x
export OUT_DIR="${1-dist}"
# To override the latest git tag as the version, pass something else as the second arg.
export VERSION=${2:-$(git describe --tags --always --dirty)}
# To overwrite the version details, pass something as the third arg. Empty string disables it.
export VERSION_DETAILS=${3-"$(date -u +"%FT%T%z")/$(git describe --tags --always --long --dirty)"}
set +x
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_ARGS=(-o "${OUT_DIR}/${NAME}/k6${SUFFIX}" -trimpath)
if [ -n "$VERSION_DETAILS" ]; then
BUILD_ARGS+=(-ldflags "-X go.k6.io/k6/lib/consts.VersionDetails=$VERSION_DETAILS")
fi
local PACKAGE_FORMATS
IFS="," read -ra PACKAGE_FORMATS <<< "${3}"
local ENV_VARS
IFS="," read -ra ENV_VARS <<< "${4}"
echo "- Building platform: ${ALIAS} (" "${ENV_VARS[@]}" "go build" "${BUILD_ARGS[@]}" ")"
mkdir -p "${OUT_DIR}/${NAME}"
# Subshell to not mess with the current env vars or CWD
(
export "${ENV_VARS[@]}"
# Build a binary
go build "${BUILD_ARGS[@]}"
for format in "${PACKAGE_FORMATS[@]}"; do
package "$format"
done
)
}
package() {
local FMT="$1"
echo "- Creating ${NAME}.${FMT} package..."
case $FMT in
deb|rpm)
# nfpm can't substitute env vars in file paths, so we have to cd...
cd "${OUT_DIR}/${NAME}"
set -x # Show exactly what command was executed
nfpm package --config ../../packaging/nfpm.yaml --packager "${FMT}" \
--target "../k6-${VERSION}-linux-${GOARCH}.${FMT}"
set +x
cd -
;;
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 linux-amd64 "" tgz,rpm,deb GOOS=linux,GOARCH=amd64,CGO_ENABLED=0
build linux-arm64 "" tgz GOOS=linux,GOARCH=arm64,CGO_ENABLED=0 # TODO: package rpm and dep too
build macos-amd64 "" zip GOOS=darwin,GOARCH=amd64
build macos-arm64 "" zip GOOS=darwin,GOARCH=arm64
build windows-amd64 .exe zip GOOS=windows,GOARCH=amd64