-
Notifications
You must be signed in to change notification settings - Fork 20
/
release.sh
executable file
·79 lines (66 loc) · 2.08 KB
/
release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
#
# Test Betelgeuse for sanity. If all is well, generate a new commit, tag it, and
# print instructions for further steps to take.
#
# NOTE: This script should be run from the repository root directory. Also in
# order to actually release to PyPI a proper `.pypirc` file should be already
# setup, for more information check
# https://docs.python.org/3/distutils/packageindex.html#the-pypirc-file
#
set -euo pipefail
# Make sure local fork is updated
git fetch -p --all
git checkout master
git merge --ff-only origin/master
OLD_VERSION="$(git tag --list | sort -V | tail -n 1)"
if [[ $# -gt 0 ]]; then
NEW_VERSION="${1}"
else
MAJOR_VERSION="$(echo "${OLD_VERSION}" | cut -d . -f 1)"
MINOR_VERSION="$(echo "${OLD_VERSION}" | cut -d . -f 2)"
NEW_VERSION="${MAJOR_VERSION}.$((MINOR_VERSION + 1)).0"
fi
if [[ $(echo -e "${OLD_VERSION}\n${NEW_VERSION}" | sort -V | tail -n 1) = "${OLD_VERSION}" ]]; then
echo "The version must be greater than \"${OLD_VERSION}\""
exit 1
fi
# Bump version number
echo "${NEW_VERSION}" > VERSION
# Generate the package
make package-clean package
# Sanity check Betelgeuse packages on Python 2
venv="$(mktemp --directory)"
python3 -m venv "${venv}"
set +u
source "${venv}/bin/activate"
set -u
for dist in dist/*; do
ls "${dist}"
pip install --quiet -U pip
pip install --quiet "${dist}"
python -c "import betelgeuse" 1>/dev/null
make test
pip uninstall --quiet --yes betelgeuse
done
set +u
deactivate
set -u
rm -rf "${venv}"
# Get the changes from last release and commit
git add VERSION
git commit -m "Release version ${NEW_VERSION}" \
-m "Shortlog of commits since last release:" \
-m "$(git shortlog ${OLD_VERSION}.. | sed 's/^./ &/')"
# Tag with the new version
git tag "${NEW_VERSION}"
fmt <<EOF
This script has made only local changes: it has updated the VERSION file,
generated a new commit, tagged the new commit, and performed a few checks along
the way. If you are confident in these changes, you can publish them with
commands like the following:
EOF
cat <<EOF
git push --tags origin master
make publish
EOF