forked from capnproto/capnproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·353 lines (276 loc) · 11.7 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
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
#! /usr/bin/env bash
set -euo pipefail
if [ "$1" != "package" ] && [ "$1" != "bump-major" ]; then
if (grep -r KJ_DBG c++/src | egrep -v '/debug(-test)?[.]' | grep -v 'See KJ_DBG\.$'); then
echo '*** Error: There are instances of KJ_DBG in the code.' >&2
exit 1
fi
if (egrep -r 'TODO\((now|soon)\)' *); then
echo '*** Error: There are release-blocking TODOs in the code.' >&2
exit 1
fi
fi
doit() {
echo "@@@@ $@"
"$@"
}
get_version() {
local VERSION=$(grep '^AC_INIT' c++/configure.ac | sed -e 's/^[^]]*],\[\([^]]*\)].*$/\1/g')
if [[ ! "$VERSION" =~ $1 ]]; then
echo "Couldn't parse version: $VERSION" >&2
exit 1
fi
echo "$VERSION"
}
get_release_version() {
get_version '^[0-9]+[.][0-9]+[.][0-9]+(-rc[0-9]+|[.][0-9]+)?$'
}
update_version() {
local OLD=$1
local NEW=$2
local BRANCH_DESC=$3
local OLD_REGEX=${OLD//./[.]}
doit sed -i -e "s/$OLD_REGEX/$NEW/g" c++/configure.ac
doit sed -i -e "s/set(VERSION.*)/set(VERSION $NEW)/g" c++/CMakeLists.txt
local NEW_NOTAG=${NEW%%-*}
declare -a NEW_ARR=(${NEW_NOTAG//./ })
doit sed -i -re "
s/^#define CAPNP_VERSION_MAJOR [0-9]+\$/#define CAPNP_VERSION_MAJOR ${NEW_ARR[0]}/g;
s/^#define CAPNP_VERSION_MINOR [0-9]+\$/#define CAPNP_VERSION_MINOR ${NEW_ARR[1]}/g;
s/^#define CAPNP_VERSION_MICRO [0-9]+\$/#define CAPNP_VERSION_MICRO ${NEW_ARR[2]:-0}/g" \
c++/src/capnp/common.h
local NEW_COMBINED=$(( ${NEW_ARR[0]} * 1000000 + ${NEW_ARR[1]} * 1000 + ${NEW_ARR[2]:-0 }))
doit sed -i -re "s/^#elif CAPNP_VERSION != [0-9]*\$/#elif CAPNP_VERSION != $NEW_COMBINED/g" \
c++/src/*/*.capnp.h c++/src/*/*/*.capnp.h
doit git commit -a -m "Set $BRANCH_DESC version to $NEW."
}
build_packages() {
local VERSION=$1
local VERSION_BASE=${VERSION%%-*}
echo "========================================================================="
echo "Building C++ package..."
echo "========================================================================="
# make dist tarball and move into ..
cd c++
doit autoreconf -i
doit ./configure
doit make -j6 distcheck
doit mv capnproto-c++-$VERSION.tar.gz ..
doit make distclean
# build windows executables
doit ./configure --host=i686-w64-mingw32 --with-external-capnp \
--disable-shared CXXFLAGS='-static-libgcc -static-libstdc++'
doit make -j6 capnp.exe capnpc-c++.exe capnpc-capnp.exe
doit i686-w64-mingw32-strip capnp.exe capnpc-c++.exe capnpc-capnp.exe
doit mkdir capnproto-tools-win32-$VERSION
doit mv capnp.exe capnpc-c++.exe capnpc-capnp.exe capnproto-tools-win32-$VERSION
doit make maintainer-clean
# repack dist tarball and win32 tools into win32 zip, with DOS line endings
doit tar zxf ../capnproto-c++-$VERSION.tar.gz
find capnproto-c++-$VERSION -name '*.c++' -o -name '*.h' -o -name '*.capnp' -o -name '*.md' -o -name '*.txt' | grep -v testdata | doit xargs unix2dos
doit zip -r ../capnproto-c++-win32-$VERSION.zip capnproto-c++-$VERSION capnproto-tools-win32-$VERSION
rm -rf capnproto-c++-$VERSION capnproto-tools-win32-$VERSION
cd ..
}
cherry_pick() {
shift
if [ $# -gt 0 ]; then
echo "========================================================================="
echo "Cherry-picking fixes"
echo "========================================================================="
doit git cherry-pick "$@"
fi
}
done_banner() {
local VERSION=$1
local PUSH=$2
local FINAL=$3
echo "========================================================================="
echo "Done"
echo "========================================================================="
echo "Ready to release:"
echo " capnproto-c++-$VERSION.tar.gz"
echo " capnproto-c++-win32-$VERSION.zip"
echo "Don't forget to push changes:"
echo " git push origin $PUSH"
read -s -n 1 -p "Shall I push to git and upload to capnproto.org now? (y/N)" YESNO
echo
case "$YESNO" in
y | Y )
doit git push origin $PUSH
doit gce-ss copy-files capnproto-c++-$VERSION.tar.gz capnproto-c++-win32-$VERSION.zip \
alpha2:/var/www/capnproto.org
if [ "$FINAL" = yes ]; then
echo "========================================================================="
echo "Publishing docs"
echo "========================================================================="
cd doc
doit ./push-site.sh
cd ..
echo "========================================================================="
echo "Really done"
echo "========================================================================="
fi
echo "Release is available at:"
echo " http://capnproto.org/capnproto-c++-$VERSION.tar.gz"
;;
* )
echo "OK, do it yourself then."
;;
esac
}
BRANCH=$(git rev-parse --abbrev-ref HEAD)
case "${1-}:$BRANCH" in
bump-major:* )
echo "Bump major version number on HEAD."
HEAD_VERSION=$(get_version '^[0-9]+[.][0-9]+-dev$')
OLD_MAJOR=$(echo $HEAD_VERSION | cut -d. -f1)
NEW_VERSION=$(( OLD_MAJOR + 1 )).0-dev
update_version $HEAD_VERSION $NEW_VERSION "mainline"
;;
# ======================================================================================
candidate:master )
echo "New major release."
if [ $# -gt 1 ]; then
echo "Cannot cherry-pick when starting from master. Do it yourself." >&2
exit 1
fi
HEAD_VERSION=$(get_version '^[0-9]+[.][0-9]+-dev$')
RELEASE_VERSION=${HEAD_VERSION%%-dev}.0
echo "Version: $RELEASE_VERSION"
echo "========================================================================="
echo "Creating release branch..."
echo "========================================================================="
doit git checkout -b release-$RELEASE_VERSION
update_version $HEAD_VERSION $RELEASE_VERSION-rc1 "release branch"
build_packages $RELEASE_VERSION-rc1
echo "========================================================================="
echo "Updating version in master branch..."
echo "========================================================================="
doit git checkout master
declare -a VERSION_ARR=(${RELEASE_VERSION//./ })
NEXT_VERSION=${VERSION_ARR[0]}.$((VERSION_ARR[1] + 1))
update_version $HEAD_VERSION $NEXT_VERSION-dev "mainline"
done_banner $RELEASE_VERSION-rc1 "master release-$RELEASE_VERSION" no
;;
# ======================================================================================
candidate:release-* )
echo "New release candidate."
OLD_VERSION=$(get_release_version)
if [[ $OLD_VERSION == *-rc* ]]; then
# New release candidate for existing release.
RC=${OLD_VERSION##*-rc}
BRANCH_VERSION=${OLD_VERSION%%-rc*}
RC_VERSION=$BRANCH_VERSION-rc$(( RC + 1 ))
echo "Version: $RC_VERSION"
else
# New micro release.
declare -a VERSION_ARR=(${OLD_VERSION//./ })
BRANCH_VERSION=${VERSION_ARR[0]}.${VERSION_ARR[1]}.$((VERSION_ARR[2] + 1))
RC_VERSION=$BRANCH_VERSION-rc1
echo "Version: $RC_VERSION"
echo "========================================================================="
echo "Creating new release branch..."
echo "========================================================================="
doit git checkout -b release-$BRANCH_VERSION
fi
echo "========================================================================="
echo "Updating version number to $RC_VERSION..."
echo "========================================================================="
update_version $OLD_VERSION $RC_VERSION "release branch"
cherry_pick "$@"
build_packages $RC_VERSION
done_banner $RC_VERSION release-$BRANCH_VERSION no
;;
# ======================================================================================
final:release-* )
echo "Final release."
OLD_VERSION=$(get_release_version)
if [[ $OLD_VERSION != *-rc* ]]; then
echo "Current version is already a final release. You need to create a new candidate first." >&2
exit 1
fi
if [ $# -gt 1 ]; then
echo "Cannot cherry-pick into final release. Make another candidate." >&2
exit 1
fi
RC=${OLD_VERSION##*-rc}
NEW_VERSION=${OLD_VERSION%%-rc*}
echo "Version: $NEW_VERSION"
echo "========================================================================="
echo "Updating version number to $NEW_VERSION..."
echo "========================================================================="
doit sed -i -re "s/capnproto-c[+][+]-[0-9]+[.][0-9]+[.][0-9]+([.][0-9]+)?\>/capnproto-c++-$NEW_VERSION/g" doc/install.md
doit sed -i -re "s/capnproto-c[+][+]-win32-[0-9]+[.][0-9]+[.][0-9]+([.][0-9]+)?\>/capnproto-c++-win32-$NEW_VERSION/g" doc/install.md
doit sed -i -re "s/capnproto-tools-win32-[0-9]+[.][0-9]+[.][0-9]+([.][0-9]+)?\>/capnproto-tools-win32-$NEW_VERSION/g" doc/install.md
update_version $OLD_VERSION $NEW_VERSION "release branch"
doit git tag v$NEW_VERSION
build_packages $NEW_VERSION
done_banner $NEW_VERSION "v$NEW_VERSION release-$NEW_VERSION" yes
;;
# ======================================================================================
security:release-* )
echo "Security release."
OLD_VERSION=$(get_release_version)
if [[ $OLD_VERSION == *-rc* ]]; then
echo "Security releases don't have candidates." >&2
exit 1
fi
declare -a VERSION_ARR=(${OLD_VERSION//./ } 0)
NEW_VERSION=${VERSION_ARR[0]}.${VERSION_ARR[1]}.${VERSION_ARR[2]}.$((VERSION_ARR[3] + 1))
echo "Version: $NEW_VERSION"
echo "========================================================================="
echo "Updating version number to $NEW_VERSION..."
echo "========================================================================="
doit sed -i -re "s/capnproto-c[+][+]-[0-9]+[.][0-9]+[.][0-9]+([.][0-9]+)?\>/capnproto-c++-$NEW_VERSION/g" doc/install.md
doit sed -i -re "s/capnproto-c[+][+]-win32-[0-9]+[.][0-9]+[.][0-9]+([.][0-9]+)?\>/capnproto-c++-win32-$NEW_VERSION/g" doc/install.md
doit sed -i -re "s/capnproto-tools-win32-[0-9]+[.][0-9]+[.][0-9]+([.][0-9]+)?\>/capnproto-tools-win32-$NEW_VERSION/g" doc/install.md
update_version $OLD_VERSION $NEW_VERSION "release branch"
cherry_pick "$@"
doit git tag v$NEW_VERSION
build_packages $NEW_VERSION
done_banner $NEW_VERSION "v$NEW_VERSION release-$NEW_VERSION" yes
;;
# ======================================================================================
retry:release-* )
echo "Retrying release."
OLD_VERSION=$(get_release_version)
echo "Version: $OLD_VERSION"
if [[ $OLD_VERSION == *-rc* ]]; then
# We can add more cherry-picks when retrying a candidate.
cherry_pick "$@"
else
if [ $# -gt 1 ]; then
echo "Cannot cherry-pick into final release. Make another candidate." >&2
exit 1
fi
fi
OLD_VERSION=$(get_release_version)
build_packages $OLD_VERSION
if [[ $OLD_VERSION == *-rc* ]]; then
BRANCH_VERSION=${OLD_VERSION%%-rc*}
done_banner $OLD_VERSION release-$BRANCH_VERSION no
else
doit git tag v$OLD_VERSION
done_banner $OLD_VERSION "v$OLD_VERSION release-$OLD_VERSION" no
fi
;;
# ======================================================================================
package:* )
echo "Just building a package."
build_packages $(get_version '.*')
;;
# ======================================================================================
*:master )
echo "Invalid command for mainline branch. Only command is 'candidate'." >&2
exit 1
;;
*:release-* )
echo "Invalid command for release branch. Commands are 'candidate', 'final', and 'retry'." >&2
exit 1
;;
* )
echo "Not a master or release branch." >&2
exit 1
;;
esac