terraform/scripts/build.sh

103 lines
2.5 KiB
Bash
Raw Normal View History

2015-06-30 19:52:11 +02:00
#!/usr/bin/env bash
2014-06-26 19:07:31 +02:00
#
2014-08-28 18:52:10 +02:00
# This script builds the application from source for multiple platforms.
2014-06-26 19:07:31 +02:00
# Get the parent directory of where this script is.
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
# Change into that directory
cd "$DIR"
2014-06-26 19:07:31 +02:00
2014-08-28 18:52:10 +02:00
# Determine the arch/os combos we're building for
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
2016-01-05 15:53:19 +01:00
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd solaris}
XC_EXCLUDE_OSARCH="!darwin/arm !darwin/386"
2014-08-28 18:52:10 +02:00
2014-07-28 19:53:36 +02:00
# Delete the old dir
2014-08-28 18:52:10 +02:00
echo "==> Removing old directory..."
2014-07-28 19:53:36 +02:00
rm -f bin/*
2014-08-28 18:52:10 +02:00
rm -rf pkg/*
2014-08-31 18:31:57 +02:00
mkdir -p bin/
2014-07-28 19:53:36 +02:00
2014-08-29 01:47:14 +02:00
# If its dev mode, only build for ourself
if [[ -n "${TF_DEV}" ]]; then
2014-08-29 01:47:14 +02:00
XC_OS=$(go env GOOS)
XC_ARCH=$(go env GOARCH)
fi
if ! which gox > /dev/null; then
echo "==> Installing gox..."
go get github.com/mitchellh/gox
fi
# Instruct gox to build statically linked binaries
export CGO_ENABLED=0
# Set module download mode to readonly to not implicitly update go.mod
export GOFLAGS="-mod=readonly"
core: Use environment variables to set VersionPrerelease at compile time Instead of using a hardcoded version prerelease string, which makes release automation difficult, set the version prerelease string from an environment variable via the go linker tool during compile time. The environment variable `TF_RELEASE` should only be set via the `make bin` target, and thus leaves the version prerelease string unset. Otherwise, when running a local compile of terraform via the `make dev` makefile target, the version prerelease string is set to `"dev"`, as usual. This also requires some changes to both the circonus and postgresql providers, as they directly used the `VersionPrerelease` constant. We now simply call the `VersionString()` function, which returns the proper interpolated version string with the prerelease string populated correctly. `TF_RELEASE` is unset: ```sh $ make dev ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/05/22 10:38:19 Generated command/internal_plugin_list.go ==> Removing old directory... ==> Building... Number of parallel builds: 3 --> linux/amd64: github.com/hashicorp/terraform ==> Results: total 209M -rwxr-xr-x 1 jake jake 209M May 22 10:39 terraform $ terraform version Terraform v0.9.6-dev (fd472e4a86500606b03c314f70d11f2bc4bc84e5+CHANGES) ``` `TF_RELEASE` is set (mimicking the `make bin` target): ```sh $ TF_RELEASE=1 make dev ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/05/22 10:40:39 Generated command/internal_plugin_list.go ==> Removing old directory... ==> Building... Number of parallel builds: 3 --> linux/amd64: github.com/hashicorp/terraform ==> Results: total 121M -rwxr-xr-x 1 jake jake 121M May 22 10:42 terraform $ terraform version Terraform v0.9.6 ```
2017-05-22 16:49:15 +02:00
# In release mode we don't want debug information in the binary
2016-04-19 15:15:56 +02:00
if [[ -n "${TF_RELEASE}" ]]; then
LD_FLAGS="-s -w"
2016-04-19 15:15:56 +02:00
fi
# Ensure all remote modules are downloaded and cached before build so that
# the concurrent builds launched by gox won't race to redundantly download them.
go mod download
2014-06-26 19:07:31 +02:00
# Build!
2014-08-28 18:52:10 +02:00
echo "==> Building..."
2014-06-26 19:07:31 +02:00
gox \
2014-08-28 18:52:10 +02:00
-os="${XC_OS}" \
-arch="${XC_ARCH}" \
-osarch="${XC_EXCLUDE_OSARCH}" \
2016-04-19 15:15:56 +02:00
-ldflags "${LD_FLAGS}" \
-output "pkg/{{.OS}}_{{.Arch}}/terraform" \
.
2014-08-28 18:52:10 +02:00
2014-09-30 03:18:14 +02:00
# Move all the compiled things to the $GOPATH/bin
GOPATH=${GOPATH:-$(go env GOPATH)}
case $(uname) in
CYGWIN*)
GOPATH="$(cygpath $GOPATH)"
;;
esac
OLDIFS=$IFS
IFS=: MAIN_GOPATH=($GOPATH)
IFS=$OLDIFS
# Create GOPATH/bin if it's doesn't exists
if [ ! -d $MAIN_GOPATH/bin ]; then
echo "==> Creating GOPATH/bin directory..."
mkdir -p $MAIN_GOPATH/bin
fi
2014-08-28 18:52:10 +02:00
# Copy our OS/Arch to the bin/ directory
DEV_PLATFORM="./pkg/$(go env GOOS)_$(go env GOARCH)"
2016-05-16 02:00:44 +02:00
if [[ -d "${DEV_PLATFORM}" ]]; then
for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f); do
cp ${F} bin/
cp ${F} ${MAIN_GOPATH}/bin/
done
fi
2014-06-26 19:07:31 +02:00
2014-07-28 19:53:36 +02:00
if [ "${TF_DEV}x" = "x" ]; then
# Zip and copy to the dist dir
2014-08-28 18:52:10 +02:00
echo "==> Packaging..."
for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do
OSARCH=$(basename ${PLATFORM})
echo "--> ${OSARCH}"
pushd $PLATFORM >/dev/null 2>&1
zip ../${OSARCH}.zip ./*
popd >/dev/null 2>&1
done
2014-07-28 19:53:36 +02:00
fi
2014-06-26 19:07:31 +02:00
# Done!
echo
2014-08-28 18:52:10 +02:00
echo "==> Results:"
2014-06-26 19:07:31 +02:00
ls -hl bin/