forked from mypaint/mypaint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·216 lines (195 loc) · 5.64 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
#!/bin/sh
#: Make tarball releases from git, running tests. This does roughly
#: what 'make distcheck' would do if we were using autotools.
#:
#: Usage:
#: $ ./release.sh [OPTIONS] [--] [OUTPUTDIR]
#:
#: Options:
#: --help show this message and exit ok
#: --no-gitcheck allow running with uncommitted changes
#: --no-tests avoid running the tests
#: --no-cleanup don't clean up the export location
#: --headless don't do anything requiring graphical output
#: --debian-naming outputs are debian-style .orig.tar.Xs (for PPAs)
#: --simple-naming outputs are just named mypaint.tar.X (builders)
#: --gzip-tarball make the optional .tar.gz tarball
#: --bzip2-tarball make the optional .tar.bz2 tarball
#:
#: This script must be run from the top-level directory of a MyPaint
#: git checkout. By default, it makes just one .tar.xz output file
#: in the current working directory.
#:
#: Only skip tests and checks when debugging the export process itself.
set -e
SKIP_GITCHECK=false
SKIP_TESTS=false
SKIP_CLEANUP=false
DEBIAN_NAMING=false
SIMPLE_NAMING=false
GZIP_TARBALL=false
BZIP2_TARBALL=false
OUTPUT_DIR="$(pwd)"
while test $# -gt 0; do
case "$1" in
--help)
grep '^#:' $0
exit 0;
;;
--no-gitcheck)
SKIP_GITCHECK=true
shift
;;
--no-tests)
SKIP_TESTS=true
shift
;;
--no-cleanup)
SKIP_CLEANUP=true
shift
;;
--debian-naming)
DEBIAN_NAMING=true
shift
;;
--simple-naming)
SIMPLE_NAMING=true
shift
;;
--gzip-tarball)
GZIP_TARBALL=true
shift
;;
--bzip2-tarball)
BZIP2_TARBALL=true
shift
;;
--headless)
HEADLESS=true
shift
;;
--)
shift
break
;;
-*)
echo >&2 "Unknown option $1 (try running with --help)"
exit 1
;;
*)
break
;;
esac
done
if test $# -gt 0; then
OUTPUT_DIR="$1"
shift
fi
if test $# -gt 0; then
echo >&2 "Trailing junk in args: \"$@\" (try running with --help)"
exit 1
fi
if ! test -d .git; then
echo "Not at the root of a git repository"
exit 1
fi
if ! $SKIP_GITCHECK; then
if ! git diff --quiet; then
echo "You have local changes, stage them first with 'git add'!"
exit 1
fi
fi
# Extract versions, either from the code and .git, or from release_info
# if it exists.
PYTHONPATH=. python lib/meta.py > "./.release_info.TMP"
. "./.release_info.TMP"
# Base version; a string like "1.1.0" for stable releases or "1.1.1-alpha"
# when making prereleases during the active development cycle.
base_version="$MYPAINT_VERSION_BASE"
formal_version="$MYPAINT_VERSION_FORMAL"
long_version="$MYPAINT_VERSION_CEREMONIAL"
echo "Base version: $base_version"
orig_dir="$(pwd)"
# Tarball naming
if $DEBIAN_NAMING; then
debian_upstream_version=`echo $formal_version | sed -e 's/-/~/'`
tarball_basename="mypaint_${debian_upstream_version}.orig.tar"
exportdir_basename="mypaint-${debian_upstream_version}"
elif $SIMPLE_NAMING; then
tarball_basename="mypaint.tar"
exportdir_basename="mypaint"
else
tarball_basename="mypaint-${formal_version}.tar"
exportdir_basename="mypaint-${formal_version}"
fi
# Tarball version string is used for the directory
exportdir_location="/tmp/.mypaint-export-$$"
exportdir_path="$exportdir_location/$exportdir_basename"
# Construct release tmpdir
rm -rf "$exportdir_location"
mkdir -p "$exportdir_location"
git checkout-index -a -f --prefix="$exportdir_path/"
# Include submodules into release tarball
submodule_paths="brushlib"
git submodule update --init
for submod_path in $submodule_paths; do
(cd "$submod_path" && \
git checkout-index -a -f --prefix="$exportdir_path/$submod_path/")
done
# Tidy up release tmpdir, and record info in it about what was used. If
# the release_info file exists in a build tree, scons will write it into
# the generated ./mypaint script in place of information it would
# otherwise glean from .git.
cd "$exportdir_path"
rm -f release.sh
rm -f .travis.yml
rm -fr .git*
cp -a "${orig_dir}/.release_info.TMP" "release_info"
rm -f "${orig_dir}/.release_info.TMP"
cd ..
# Create tarballs of release dir before we do any test builds
mkdir -p "$OUTPUT_DIR"
tarball="$OUTPUT_DIR/$tarball_basename"
rm -f "$tarball"
tar -cf "$tarball" "$exportdir_basename"
if $GZIP_TARBALL; then
echo "Making $tarball.gz ..."
gzip -9 --keep --force "$tarball"
fi
if $BZIP2_TARBALL; then
echo "Making $tarball.bz2 ..."
bzip2 -9 --keep --force "$tarball"
fi
echo "Making $tarball.xz ..."
xz -9 --force "$tarball"
# Build the release and test it
if $SKIP_TESTS; then
echo "Skipping debug build and tests"
else
echo "Making debug build inside $exportdir_path ..."
cd "$exportdir_path"
scons debug=true
echo "Running tests ..."
python tests/test_mypaintlib.py
python tests/test_compositeops.py
python tests/test_rendering.py
if ! $HEADLESS; then
python tests/test_performance.py -a -c 1
python tests/test_memory_leak.py -a -e
fi
echo "Done testing."
fi
# Clean up
cd "$orig_dir"
cat "$exportdir_path/release_info"
if $SKIP_CLEANUP; then
echo "Skipping cleanup of $exportdir_location"
else
echo "Cleaning up $exportdir_location ..."
rm -fr "$exportdir_location"
fi
# Results
$GZIP_TARBALL && ls -sSh "$tarball".gz
$BZIP2_TARBALL && ls -sSh "$tarball".bz2
ls -sSh "$tarball".xz
echo "Done."