open-nomad/scripts/update_golang_version.sh

36 lines
1.3 KiB
Bash
Raw Normal View History

2020-01-16 15:00:15 +00:00
#!/bin/sh
if [ -z "$1" ]; then
echo "usage: $0 GO_VERSION"
echo ""
echo "For example: $0 1.14.3"
exit 1
fi
2020-01-16 15:00:15 +00:00
golang_version="$1"
current_version=$(grep -o -e 'golang:[.0-9]*' .circleci/config.yml | head -n1 | cut -d: -f2)
2020-03-02 18:55:02 +00:00
echo "--> Replacing Go ${current_version} with Go ${golang_version} ..."
2020-01-16 15:00:15 +00:00
# To support both GNU and BSD sed, the regex is looser than it needs to be.
# Specifically, we use "* instead of "?, which relies on GNU extension without much loss of
2020-01-27 14:10:38 +00:00
# correctness in practice.
2020-01-16 15:00:15 +00:00
sed -i'' -e "s|golang:[.0-9]*|golang:${golang_version}|g" \
.circleci/config/config.yml .circleci/config.yml
sed -i'' -e "s|GOLANG_VERSION:[ \"]*[.0-9]*\"*|GOLANG_VERSION: ${golang_version}|g" \
.circleci/config/config.yml .circleci/config.yml
sed -i'' -e "s|\\(golang.org.*version\\) [.0-9]*|\\1 ${golang_version}|g" \
README.md
sed -i'' -e "s|go_version=\"*[^\"]*\"*$|go_version=\"${golang_version}\"|g" \
scripts/vagrant-linux-priv-go.sh scripts/release/mac-remote-build
2020-03-02 18:55:02 +00:00
echo "--> Checking if there is any remaining references to old versions..."
if git grep -I --fixed-strings "${current_version}" | grep -v -e CHANGELOG.md -e vendor/ -e website/ -e ui/
2020-01-16 15:00:15 +00:00
then
echo " ^^ files contain references to old golang version" >&2
echo " update script and run again" >&2
exit 1
fi