forked from skvadrik/re2c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·53 lines (44 loc) · 1.33 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
#!/usr/bin/env bash
set -e
# checks for which there are no scripts yet
echo 'RUNME: cppcheck --enable=all --inconclusive --std=posix --quiet --force -I. src/'
echo 'RUNME: uselex `find <objdir> -type f -name '"'*.o'"'`'
echo 'RUNME: configure CFLAGS="-ffunction-sections -fdata-sections" LDFLAGS="-Wl,--gc-sections -Wl,--print-gc-sections"'
if [[ $# -ne 2 ]]; then
echo "usage: ./release.sh <version> <builddir>"
exit 1
fi
version="$1"
builddir="$2"
branch=`git rev-parse --abbrev-ref HEAD`
if [[ $branch != "master" ]]
then
echo "must be on branch 'master'"
exit 1
fi
# check that examples work
for lang in c go rust; do
( cd examples/$lang && ./__run_all.sh \
|| { echo "$lang examples failed"; exit 1; } )
done
# update version
old="[0-9]+(\.[0-9]+)*(\.dev)?"
new=$version
# edit version in configure.ac
lcontext="AC_INIT\(\[re2c\],\["
rcontext="\],\[re2c-general@lists\.sourceforge\.net\]\)"
sed -i -E "s/$lcontext$old$rcontext/$lcontext$new$rcontext/" configure.ac
# edit version in CMakeLists.txt
lcontext="project\(re2c VERSION "
rcontext=" "
sed -i -E "s/$lcontext$old$rcontext/$lcontext$new$rcontext/" CMakeLists.txt
# distcheck
build/__distcheck.sh "$builddir"
# commit release
git commit -a -m "Release $version."
git tag $version
for r in `git remote`
do
git push $r master
git push --tags $r master
done