open-vault/scripts/dist.sh

80 lines
2.1 KiB
Bash
Raw Normal View History

2015-07-22 02:06:54 +00:00
#!/usr/bin/env bash
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
2015-03-04 07:14:18 +00:00
set -e
# Get the version from the command line
VERSION=$1
if [ -z $VERSION ]; then
2016-06-30 18:18:14 +00:00
echo "Please specify a version."
exit 1
2015-03-04 07:14:18 +00:00
fi
2015-12-01 18:12:58 +00:00
# Make sure we have AWS API keys
if ([ -z $AWS_ACCESS_KEY_ID ] || [ -z $AWS_SECRET_ACCESS_KEY ]) && [ ! -z $HC_RELEASE ]; then
2016-06-30 18:18:14 +00:00
echo "Please set your AWS access key information in the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY env vars."
exit 1
2015-03-04 07:14:18 +00:00
fi
if [ -z $NOBUILD ] && [ -z $DOCKER_CROSS_IMAGE ]; then
2016-06-30 18:18:14 +00:00
echo "Please set the Docker cross-compile image in DOCKER_CROSS_IMAGE"
exit 1
fi
2015-03-04 07:14:18 +00: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 dir because we expect that
cd $DIR
2015-12-01 18:12:58 +00:00
if [ -z $RELBRANCH ]; then
RELBRANCH=main
2015-12-01 18:12:58 +00:00
fi
2015-09-27 20:45:24 +00:00
# Tag, unless told not to
if [ -z $NOTAG ]; then
echo "==> Tagging..."
git commit --allow-empty --gpg-sign=348FFC4C -m "Cut version $VERSION"
2015-12-01 18:12:58 +00:00
git tag -a -m "Version $VERSION" -s -u 348FFC4C "v${VERSION}" $RELBRANCH
2015-09-27 20:45:24 +00:00
fi
# Build the packages
if [ -z $NOBUILD ]; then
2015-12-01 18:12:58 +00:00
# This should be a local build of the Dockerfile in the cross dir
docker run --rm -v "$(pwd)":/gopath/src/github.com/hashicorp/vault -w /gopath/src/github.com/hashicorp/vault ${DOCKER_CROSS_IMAGE}
2015-09-27 20:45:24 +00:00
fi
2015-03-04 07:14:18 +00:00
# Zip all the files
rm -rf ./pkg/dist
mkdir -p ./pkg/dist
for FILENAME in $(find ./pkg -mindepth 1 -maxdepth 1 -type f); do
FILENAME=$(basename $FILENAME)
cp ./pkg/${FILENAME} ./pkg/dist/vault_${VERSION}_${FILENAME}
2015-03-04 07:14:18 +00:00
done
2015-09-27 20:45:24 +00:00
if [ -z $NOSIGN ]; then
echo "==> Signing..."
pushd ./pkg/dist
rm -f ./vault_${VERSION}_SHA256SUMS*
shasum -a256 * > ./vault_${VERSION}_SHA256SUMS
gpg --default-key 348FFC4C --detach-sig ./vault_${VERSION}_SHA256SUMS
popd
fi
2015-03-04 07:14:18 +00:00
# Upload
2015-12-01 18:12:58 +00:00
if [ ! -z $HC_RELEASE ]; then
2016-07-26 14:17:52 +00:00
hc-releases upload $DIR/pkg/dist
hc-releases publish
2016-02-25 20:48:25 +00:00
curl -X PURGE https://releases.hashicorp.com/vault/${VERSION}
for FILENAME in $(find $DIR/pkg/dist -type f); do
FILENAME=$(basename $FILENAME)
curl -X PURGE https://releases.hashicorp.com/vault/${VERSION}/${FILENAME}
done
2015-09-27 20:45:24 +00:00
fi
2015-03-04 07:14:18 +00:00
exit 0