Merge #6238: Smaller release binaries by stripping debug info
This commit is contained in:
commit
26f0b803e7
2
Makefile
2
Makefile
|
@ -5,7 +5,7 @@ default: test vet
|
|||
|
||||
# bin generates the releaseable binaries for Terraform
|
||||
bin: fmtcheck generate
|
||||
@sh -c "'$(CURDIR)/scripts/build.sh'"
|
||||
@TF_RELEASE=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
||||
|
||||
# dev creates binaries for testing Terraform locally. These are put
|
||||
# into ./bin/ as well as $GOPATH/bin
|
||||
|
|
|
@ -35,12 +35,18 @@ if ! which gox > /dev/null; then
|
|||
go get -u github.com/mitchellh/gox
|
||||
fi
|
||||
|
||||
LD_FLAGS="-X main.GitCommit=${GIT_COMMIT}${GIT_DIRTY}"
|
||||
# In relase mode we don't want debug information in the binary
|
||||
if [[ -n "${TF_RELEASE}" ]]; then
|
||||
LD_FLAGS="-X main.GitCommit=${GIT_COMMIT}${GIT_DIRTY} -s -w"
|
||||
fi
|
||||
|
||||
# Build!
|
||||
echo "==> Building..."
|
||||
gox \
|
||||
-os="${XC_OS}" \
|
||||
-arch="${XC_ARCH}" \
|
||||
-ldflags "-X main.GitCommit=${GIT_COMMIT}${GIT_DIRTY}" \
|
||||
-ldflags "${LD_FLAGS}" \
|
||||
-output "pkg/{{.OS}}_{{.Arch}}/terraform-{{.Dir}}" \
|
||||
$(go list ./... | grep -v /vendor/)
|
||||
|
||||
|
|
Loading…
Reference in New Issue