2023-03-28 12:39:37 -05:00
|
|
|
#!/usr/bin/env bash
|
2023-05-02 10:33:06 -05:00
|
|
|
# Copyright (c) HashiCorp, Inc.
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2023-03-28 12:39:37 -05:00
|
|
|
set -uo pipefail
|
|
|
|
|
|
|
|
# Trim the "v" prefix, if any.
|
|
|
|
VERSION="${RAW_VERSION#v}"
|
|
|
|
|
|
|
|
# Split off the build metadata part, if any
|
|
|
|
# (we won't actually include it in our final version, and handle it only for
|
|
|
|
# compleness against semver syntax.)
|
|
|
|
IFS='+' read -ra VERSION BUILD_META <<< "$VERSION"
|
|
|
|
|
|
|
|
# Separate out the prerelease part, if any
|
|
|
|
# (version.go expects it to be in a separate variable)
|
|
|
|
IFS='-' read -r BASE_VERSION PRERELEASE <<< "$VERSION"
|
|
|
|
|
|
|
|
EXPERIMENTS_ENABLED=0
|
|
|
|
if [[ "$PRERELEASE" == alpha* ]]; then
|
|
|
|
EXPERIMENTS_ENABLED=1
|
|
|
|
fi
|
|
|
|
if [[ "$PRERELEASE" == dev* ]]; then
|
|
|
|
EXPERIMENTS_ENABLED=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
LDFLAGS="-w -s"
|
|
|
|
if [[ "$EXPERIMENTS_ENABLED" == 1 ]]; then
|
|
|
|
LDFLAGS="${LDFLAGS} -X 'main.experimentsAllowed=yes'"
|
|
|
|
fi
|
2023-08-17 07:45:11 -05:00
|
|
|
LDFLAGS="${LDFLAGS} -X 'github.com/placeholderplaceholderplaceholder/opentf/version.dev=no'"
|
2023-03-28 12:39:37 -05:00
|
|
|
|
|
|
|
echo "Building Terraform CLI ${VERSION}"
|
|
|
|
if [[ "$EXPERIMENTS_ENABLED" == 1 ]]; then
|
|
|
|
echo "This build allows use of experimental features"
|
|
|
|
fi
|
|
|
|
echo "product-version=${VERSION}" | tee -a "${GITHUB_OUTPUT}"
|
|
|
|
echo "product-version-base=${BASE_VERSION}" | tee -a "${GITHUB_OUTPUT}"
|
|
|
|
echo "product-version-pre=${PRERELEASE}" | tee -a "${GITHUB_OUTPUT}"
|
|
|
|
echo "experiments=${EXPERIMENTS_ENABLED}" | tee -a "${GITHUB_OUTPUT}"
|
2023-08-17 07:45:11 -05:00
|
|
|
echo "go-ldflags=${LDFLAGS}" | tee -a "${GITHUB_OUTPUT}"
|