2020-12-09 15:31:34 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# This script builds the application from source for multiple platforms.
|
|
|
|
# Inspired from hashicorp/terraform build script
|
2021-07-15 15:33:35 +00:00
|
|
|
# https://github.com/hashicorp/terraform/blob/83e6703bf77f60660db4465ef50d30c633f800f1/scripts/build.sh
|
2020-12-14 15:13:47 +00:00
|
|
|
set -eo pipefail
|
2020-12-09 15:31:34 +00:00
|
|
|
|
2021-07-15 15:33:35 +00:00
|
|
|
if ! which goreleaser >/dev/null; then
|
|
|
|
echo "+ Installing goreleaser..."
|
|
|
|
go install github.com/goreleaser/goreleaser@v0.173.2
|
2020-12-09 15:31:34 +00:00
|
|
|
fi
|
|
|
|
|
2021-07-15 15:33:35 +00:00
|
|
|
# Check configuration
|
|
|
|
goreleaser check
|
2020-12-09 15:31:34 +00:00
|
|
|
|
|
|
|
# Build!
|
2021-07-15 15:33:35 +00:00
|
|
|
echo "+ Building using goreleaser ..."
|
2021-07-22 08:33:04 +00:00
|
|
|
ENV=dev goreleaser build \
|
2021-07-15 15:33:35 +00:00
|
|
|
--rm-dist \
|
|
|
|
--parallelism 2 \
|
|
|
|
--snapshot \
|
|
|
|
--single-target
|