2015-06-30 12:52:11 -05:00
|
|
|
#!/usr/bin/env bash
|
2024-02-08 03:48:59 -06:00
|
|
|
# Copyright (c) The OpenTofu Authors
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
# Copyright (c) 2023 HashiCorp, Inc.
|
2023-05-02 10:33:06 -05:00
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2014-06-26 12:07:31 -05:00
|
|
|
#
|
2014-08-28 11:52:10 -05:00
|
|
|
# This script builds the application from source for multiple platforms.
|
2014-06-26 12:07:31 -05: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
|
2014-11-25 17:26:03 -06:00
|
|
|
cd "$DIR"
|
2014-06-26 12:07:31 -05:00
|
|
|
|
2014-08-28 11:52:10 -05:00
|
|
|
# Determine the arch/os combos we're building for
|
|
|
|
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
|
2016-01-05 08:53:19 -06:00
|
|
|
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd solaris}
|
2016-11-16 12:41:56 -06:00
|
|
|
XC_EXCLUDE_OSARCH="!darwin/arm !darwin/386"
|
2014-08-28 11:52:10 -05:00
|
|
|
|
2014-07-28 12:53:36 -05:00
|
|
|
# Delete the old dir
|
2014-08-28 11:52:10 -05:00
|
|
|
echo "==> Removing old directory..."
|
2014-07-28 12:53:36 -05:00
|
|
|
rm -f bin/*
|
2014-08-28 11:52:10 -05:00
|
|
|
rm -rf pkg/*
|
2014-08-31 11:31:57 -05:00
|
|
|
mkdir -p bin/
|
2014-07-28 12:53:36 -05:00
|
|
|
|
2014-08-28 18:47:14 -05:00
|
|
|
# If its dev mode, only build for ourself
|
2019-02-06 02:41:39 -06:00
|
|
|
if [[ -n "${TF_DEV}" ]]; then
|
2014-08-28 18:47:14 -05:00
|
|
|
XC_OS=$(go env GOOS)
|
|
|
|
XC_ARCH=$(go env GOARCH)
|
|
|
|
fi
|
|
|
|
|
2016-02-25 06:48:11 -06:00
|
|
|
if ! which gox > /dev/null; then
|
|
|
|
echo "==> Installing gox..."
|
2022-04-22 08:30:35 -05:00
|
|
|
go install github.com/mitchellh/gox
|
2016-02-25 06:48:11 -06:00
|
|
|
fi
|
|
|
|
|
2019-02-06 02:41:39 -06:00
|
|
|
# Instruct gox to build statically linked binaries
|
2016-06-10 08:23:11 -05:00
|
|
|
export CGO_ENABLED=0
|
|
|
|
|
2020-06-17 14:21:45 -05:00
|
|
|
# Set module download mode to readonly to not implicitly update go.mod
|
|
|
|
export GOFLAGS="-mod=readonly"
|
|
|
|
|
2023-04-10 17:56:53 -05:00
|
|
|
# In release mode we don't want debug information in the binary and we don't
|
|
|
|
# want the -dev version marker
|
2016-04-19 08:15:56 -05:00
|
|
|
if [[ -n "${TF_RELEASE}" ]]; then
|
2023-09-20 06:35:35 -05:00
|
|
|
LD_FLAGS="-s -w -X 'github.com/opentofu/opentofu/version.dev=no'"
|
2016-04-19 08:15:56 -05:00
|
|
|
fi
|
|
|
|
|
2018-11-16 20:54:33 -06:00
|
|
|
# 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 12:07:31 -05:00
|
|
|
# Build!
|
2014-08-28 11:52:10 -05:00
|
|
|
echo "==> Building..."
|
2014-06-26 12:07:31 -05:00
|
|
|
gox \
|
2014-08-28 11:52:10 -05:00
|
|
|
-os="${XC_OS}" \
|
|
|
|
-arch="${XC_ARCH}" \
|
2016-08-22 07:34:53 -05:00
|
|
|
-osarch="${XC_EXCLUDE_OSARCH}" \
|
2016-04-19 08:15:56 -05:00
|
|
|
-ldflags "${LD_FLAGS}" \
|
2023-09-20 08:51:36 -05:00
|
|
|
-output "pkg/{{.OS}}_{{.Arch}}/tofu" \
|
2023-09-27 07:37:55 -05:00
|
|
|
./cmd/tofu
|
2014-08-28 11:52:10 -05:00
|
|
|
|
2014-09-29 20:18:14 -05: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
|
|
|
|
|
2015-04-15 11:36:44 -05:00
|
|
|
# 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 11:52:10 -05:00
|
|
|
# Copy our OS/Arch to the bin/ directory
|
|
|
|
DEV_PLATFORM="./pkg/$(go env GOOS)_$(go env GOARCH)"
|
2016-05-15 19:00:44 -05: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 12:07:31 -05:00
|
|
|
|
2014-07-28 12:53:36 -05:00
|
|
|
if [ "${TF_DEV}x" = "x" ]; then
|
|
|
|
# Zip and copy to the dist dir
|
2014-08-28 11:52:10 -05: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 12:53:36 -05:00
|
|
|
fi
|
|
|
|
|
2014-06-26 12:07:31 -05:00
|
|
|
# Done!
|
|
|
|
echo
|
2014-08-28 11:52:10 -05:00
|
|
|
echo "==> Results:"
|
2014-06-26 12:07:31 -05:00
|
|
|
ls -hl bin/
|