pulumi/scripts/make_release.sh

66 lines
2 KiB
Bash
Raw Normal View History

#!/bin/bash
# make_release.sh will create a build package ready for publishing.
2018-09-03 18:49:57 +02:00
set -o nounset
set -o errexit
set -o pipefail
2018-09-03 18:49:57 +02:00
readonly ROOT=$(dirname "${0}")/..
readonly PUBDIR=$(mktemp -d)
2018-09-03 18:49:57 +02:00
readonly GITHASH=$(git rev-parse HEAD)
readonly PUBFILE=$(dirname "${PUBDIR})/${GITHASH}.tgz")
readonly VERSION=$("${ROOT}/scripts/get-version")
# Figure out which branch we're on. Prefer $TRAVIS_BRANCH, if set, since
# Travis leaves us at detached HEAD and `git rev-parse` just returns "HEAD".
2018-09-03 18:49:57 +02:00
readonly BRANCH=${TRAVIS_BRANCH:-$(git rev-parse --abbrev-ref HEAD)}
declare -a PUBTARGETS=(${GITHASH} ${VERSION} ${BRANCH})
# usage: run_go_build <path-to-package-to-build>
2018-09-03 18:49:57 +02:00
run_go_build() {
local bin_suffix=""
2018-09-03 18:49:57 +02:00
local -r output_name=$(basename $(cd "${1}" ; pwd))
if [ "$(go env GOOS)" = "windows" ]; then
bin_suffix=".exe"
fi
mkdir -p "${PUBDIR}/bin"
go build \
-ldflags "-X github.com/pulumi/pulumi/pkg/version.Version=${VERSION}" \
-o "${PUBDIR}/bin/${output_name}${bin_suffix}" \
"$1"
}
# usage: copy_package <path-to-module> <module-name>
copy_package() {
2018-09-03 18:49:57 +02:00
local -r module_root="${PUBDIR}/node_modules/${2}"
2018-09-12 02:14:58 +02:00
mkdir -p "${module_root}"
cp -r "${1}" "${module_root}/"
2018-09-03 18:49:57 +02:00
if [[ -e "${module_root}/node_modules" ]]; then
rm -rf "${module_root}/node_modules"
fi
2018-09-03 18:49:57 +02:00
if [[ -e "${module_root}/tests" ]]; then
rm -rf "${module_root}/tests"
fi
}
# Build binaries
run_go_build "${ROOT}"
2018-02-18 17:11:14 +01:00
run_go_build "${ROOT}/sdk/nodejs/cmd/pulumi-language-nodejs"
2018-03-17 18:41:37 +01:00
run_go_build "${ROOT}/sdk/python/cmd/pulumi-language-python"
2018-06-10 01:16:35 +02:00
run_go_build "${ROOT}/sdk/go/pulumi-language-go"
2018-03-17 18:41:37 +01:00
# Copy over the language and dynamic resource providers.
2018-09-03 18:49:57 +02:00
cp "${ROOT}/sdk/nodejs/dist/pulumi-resource-pulumi-nodejs" "${PUBDIR}/bin/"
cp "${ROOT}/sdk/python/cmd/pulumi-language-python-exec" "${PUBDIR}/bin/"
# Copy packages
copy_package "${ROOT}/sdk/nodejs/bin/." "@pulumi/pulumi"
# Tar up the file and then print it out for use by the caller or script.
2018-09-03 18:49:57 +02:00
tar -czf "${PUBFILE}" -C ${PUBDIR} .
echo ${PUBFILE} ${PUBTARGETS[@]}
2018-09-03 18:49:57 +02:00
exit 0