linkerd2/bin/build-cli-bin

35 lines
937 B
Bash
Executable File

#!/usr/bin/env sh
set -eu
# Builds CLI binary for current platform only and outside docker to speed up things. Suitable for local development.
# Note: This script is used by Brew when running `brew install linkerd`:
# https://github.com/Homebrew/homebrew-core/pull/36957
bindir=$( cd "${0%/*}" && pwd )
rootdir=$( cd "$bindir"/.. && pwd )
# shellcheck source=_tag.sh
. "$bindir"/_tag.sh
case $(uname) in
Darwin)
host_platform=darwin
;;
Linux)
host_platform=linux
;;
*)
host_platform=windows
;;
esac
(
cd "$rootdir"
cd "$(pwd -P)"
target=target/cli/$host_platform/linkerd
GO111MODULE=on go generate -mod=readonly ./pkg/charts/static # TODO: `go generate` does not honor -mod=readonly
root_tag=$("$bindir"/root-tag)
GO111MODULE=on CGO_ENABLED=0 go build -o $target -tags prod -mod=readonly -ldflags "-s -w -X github.com/linkerd/linkerd2/pkg/version.Version=$root_tag" ./cli
echo "$target"
)