-
Notifications
You must be signed in to change notification settings - Fork 572
Expand file tree
/
Copy pathmake_release.bash
More file actions
executable file
·249 lines (204 loc) · 6.26 KB
/
Copy pathmake_release.bash
File metadata and controls
executable file
·249 lines (204 loc) · 6.26 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#!/bin/bash
# exit on first error
set -e
usage_string="\
Usage: $0 [--rc=NUM] VERSION
"
function usage() {
echo "$usage_string"
exit
}
function raise_error() {
echo "*** $1" 1>&2
exit
}
function file_ending() {
echo $(basename "$1" | awk -F '.' '{if (NF > 1) print $NF}')
}
function assert_exists() {
while [ $# -gt 0 ]; do
if [ -z "$(file_ending "$1")" ]; then
# assume directory for paths without file ending
if [ ! -d "$1" ] ; then
raise_error "directory $1 missing"
fi
else
if [ ! -f "$1" ]; then
raise_error "file $1 missing"
fi
fi
shift
done
}
function assert_exists_not() {
while [ $# -gt 0 ]; do
if [ -e "$1" ]; then
raise_error "file $1 already exists"
fi
shift
done
}
function assert_git_status_clean() {
# save current directory
anchor="$PWD"
cd "$1"
# check for untracked files
untracked_files=$(git ls-files --others --exclude-standard)
if [ -n "$untracked_files" ]; then
raise_error "$1 contains untracked files"
fi
# check Git status
if [ -n "$(git status --porcelain)" ] ; then
raise_error "$1 is not in a clean state (see git status)"
fi
# restore directory
cd "$anchor"
}
function ask_permission() {
yes_or_no=""
while [ "$yes_or_no" != "n" ] && [ "$yes_or_no" != "y" ]; do
echo ">>> $1"
read yes_or_no
done
if [ "$yes_or_no" = "n" ]; then
raise_error "aborted"
fi
}
rc_version=""
# Parse user input.
while [[ "$1" =~ ^-- ]]; do
case "$1" in
--*=*) optarg=$(echo "$1" | sed 's/[-_a-zA-Z0-9]*=//') ;;
esac
case "$1" in
--rc=*)
rc_version=$optarg
;;
*)
raise_error "unrecognized CLI option"
;;
esac
shift
done
if [ $# -ne 1 ] ; then
usage
fi
echo "\
____ _ _____
/ ___| / \ | ___| C++
| | / _ \ | |_ Actor
| |___ / ___ \| _| Framework
\____/_/ \_|_|
This script expects to run at the root directory of a Git clone of CAF. The
current branch must be main. There must be no untracked file and the working
tree status must be equal to the current HEAD commit. Further, the script
expects a checkout of the actor-framework.github.io repository at ../website:
\$HOME
├── .github-oauth-token
.
├── libcaf_core
..
├── website
│ ├── _posts
"
if [ $(git rev-parse --abbrev-ref HEAD) != "main" ]; then
ask_permission "not in main branch, continue on branch [y] or abort [n]?"
fi
# assumed files
token_path="$HOME/.github-oauth-token"
github_msg="github_release_note.md"
main_cmake_path="CMakeLists.txt"
# check whether all expected files and directories exist
assert_exists "$token_path" "$main_cmake_path"
# check for a clean state
assert_exists_not .make-release-steps.bash
# assert_git_status_clean "."
# convert major.minor.patch version given as first argument into JJIIPP with:
# JJ: two-digit (zero padded) major version
# II: two-digit (zero padded) minor version
# PP: two-digit (zero padded) patch version
# but omit leading zeros
version_str=$(echo "$1" | awk -F. '{ if ($1 > 0) printf("%d%02d%02d\n", $1, $2, $3); else printf("%02d%02d\n", $2, $3) }')
# piping through AWK/printf makes sure 0.15 is expanded to 0.15.0
tag_version=$(echo "$1" | awk -F. '{ printf("%d.%d.%d", $1, $2, $3) }')
if [ -n "$rc_version" ]; then
tag_version="$tag_version-rc.$rc_version"
fi
# extract the release notes from the changelog
sed -n "/^## \[$tag_version\]*/,/^##[^#]/p" CHANGELOG.md | sed '$d' | awk '{ if (NR > 2) print $0}' > "$github_msg"
if [[ -s "$github_msg" ]] ; then
echo ">>> please review the GitHub release notes as extracted from the changelog"
cat "$github_msg"
echo ; echo
ask_permission "type [n] to abort or [y] to proceed"
else
raise_error 'empty GitHub release notes'
fi
# add scaffold for release script
echo "\
#!/bin/bash
set -e
" > .make-release-steps.bash
echo ">>> patching $main_cmake_path"
sed "s/CAF VERSION [0-9.]*/CAF VERSION $1/g" < "$main_cmake_path" > .tmp_cmake_lists
# check whether the version actually changed
if cmp --silent .tmp_cmake_lists "$main_cmake_path" ; then
rm .tmp_cmake_lists
ask_permission "version already matches in $main_cmake_path, continue pushing tag [y] or abort [n]?"
else
mv .tmp_cmake_lists "$main_cmake_path"
echo ; echo
echo ">>> please review the diff reported by Git for patching $main_cmake_path:"
git diff
echo ; echo
ask_permission "type [n] to abort or [y] to proceed"
echo "\
git commit -a -m \"Change version to $1\"
" >> .make-release-steps.bash
fi
token=$(cat "$token_path")
tag_descr=$(awk 1 ORS='\\r\\n' "$github_msg")
github_json=$(printf '{"tag_name": "%s","name": "%s","body": "%s","draft": false,"prerelease": false}' "$tag_version" "$tag_version" "$tag_descr")
echo "\
git push
git tag $tag_version
git push origin --tags
curl --data '$github_json' -H 'Authorization: token $token' https://api.github.com/repos/actor-framework/actor-framework/releases
" >> .make-release-steps.bash
echo ; echo
echo ">>> please review the final steps for releasing $tag_version "
cat .make-release-steps.bash
echo ; echo
ask_permission "type [y] to execute the steps above or [n] to abort"
chmod +x .make-release-steps.bash
./.make-release-steps.bash
echo ; echo
echo ">>> cleaning up"
rm "$github_msg" .make-release-steps.bash
echo ; echo
echo ">>> done"
echo ; echo
echo ">>> build and publish Doxygen on the homepage (needs a checkout under ../website)?"
ask_permission "type [y] to proceed or [n] to abort"
if [ ! -d ../website/static/doxygen ] ; then
raise_error "../website/static/doxygen does not exist"
fi
if [ -d ../website/static/doxygen/$tag_version ] ; then
raise_error "../website/static/doxygen/$tag_version/ already exist"
fi
echo "\
doxygen &> doxygen-log.txt
mkdir ../website/static/doxygen/$tag_version
cp -R html/* ../website/static/doxygen/$tag_version/
cd ../website
git add static/doxygen/$tag_version
git commit -m 'Add Doxygen for $tag_version'
git push
" >> .push-doxygen-steps.bash
echo ; echo
echo ">>> please review the final steps for pushing Doxygen for $tag_version"
cat .push-doxygen-steps.bash
echo ; echo
ask_permission "type [y] to execute the steps above or [n] to abort"
chmod +x .push-doxygen-steps.bash
./.push-doxygen-steps.bash