forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE
240 lines (142 loc) · 6.11 KB
/
RELEASE
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
This describes what to do for an release!
= Info =
Following shell expansions are used in this document:
~e .. source of libelektra
~build .. the build directory
~elektra .. the directory above ~e and ~build
~elektra-ftp .. where ftp files go to
~elektra-doc .. where doc flies go to
= TODO =
- make sure no TODO is in this file (resolve them first!)
= Tasks before Release =
== Increment Version Number ==
Increment version numbers in
- CMakeLists.txt
- Change VERSION variable in build-server
export VERSION=`kdb get system/elektra/version/constants/KDB_VERSION`
export DVERSION=$VERSION-1
dch --newversion $DVERSION "New upstream version."
git-add debian/changelog
git-commit -m "Debian Package $DVERSION (UNRELEASED)"
== Cleanup ==
For the first few steps you have to work on branch master:
git-checkout master
If any feature branch is left over merge it:
git-merge --no-ff feature
And now commit everything:
git-commit -a
Clean up the mess left over:
git-clean -df
Make an empty builddirectory:
mkdir ~build
== Check ==
Try to move as much as possible from this manual checks to build-server!
Before release is done, following must be checked:
- Everything blue on http://community.markus-raab.org:8080/
If version numbers are correct in
- CMakeLists.txt
Rebuild cleanly, run all tests and also check for memleaks:
cd ~build && ~e/scripts/configure-debian ~e && make -j5 && make run_all && make run_memcheck
Check if there are really >=135 or >=95 tests
- Check binary compatibility
Install libelektra-test of the previous version and run again:
CHECK_VERSION=NO kdb run_all > ~elektra/$VERSION/run_all
- Check which files changed
DESTDIR=D make install && cd D
find . | sort > ~elektra/$VERSION/installed_files
Check if [doc/todo/API] is fulfilled
= Preperation =
Set environment variable VERSION to current version (assumed its already locally installed) to make the
commands below work for copy&paste:
export VERSION=`kdb get system/elektra/version/constants/KDB_VERSION`
== Tag the version ==
git tag --sign -f $VERSION -m "Release $VERSION"
== Prepare Source Package ==
Build tar.gz:
cd ~build && make source-package
Check if tar is reproduceable + sign it:
gpg --sign elektra-$VERSION.tar.gz
Unpack + compile (with all available plugins) + test those sources:
tar xvzf elektra-$VERSION.tar.gz && mkdir build
cd ~build/build && ~e/scripts/configure-debian ../elektra-$VERSION && make -j5 && make run_all && make run_memcheck
Now copy the packages to ftp:
cp ~build/elektra-$VERSION.tar.gz* ~elektra-ftp/releases
== Debian Package ==
export DVERSION=$VERSION-1
Build deb:
cd ~e && git-checkout debian
git-merge --no-ff master -m "Merge for debian release $DVERSION"
UNRELEASED -> unstable
dch --release $DVERSION "New upstream version"
git-add debian/changelog
git-commit -m "Debian Package $DVERSION"
Fix debian/ + document in NEWS what maintainer need to consider, then build the package:
cp ~elektra-ftp/releases/elektra-$VERSION.tar.gz ~elektra/elektra_$VERSION.orig.tar.gz
gpg -u0B2F0DDC --sign `mktemp` # so that the step afterwards wont abort
git-buildpackage -rfakeroot -k0B2F0DDC -sa
Now move and install:
cd ~elektra && mkdir deb/$DVERSION
mv elektra_$DVERSION* deb/$DVERSION && mv *.deb deb/$DVERSION && mv elektra_$VERSION.orig.tar.gz deb/$DVERSION/
sudo dpkg -i deb/$DVERSION/*`dpkg-architecture -qDEB_BUILD_ARCH`.deb
Run some basic commands, at least:
kdb --version > deb/$DVERSION/version
kdb qt-gui
Strace what tools are doing:
strace -o deb/$DVERSION/mount.strace kdb mount file.ecf user/release_test
strace -o deb/$DVERSION/file.strace kdb file user/release_test/b
strace -o deb/$DVERSION/set.strace kdb set user/release_test/b
strace -o deb/$DVERSION/get.strace kdb get user/release_test/b
strace -o deb/$DVERSION/rm.strace kdb rm user/release_test/b
strace -o deb/$DVERSION/umount.strace kdb umount user/release_test
Run tests:
kdb run_all > deb/$DVERSION/run_all 2>&1
KDB=kdb-static kdb-static run_all > deb/$DVERSION/run_all_static 2>&1
KDB=kdb-full kdb-full run_all > deb/$DVERSION/run_all_full 2>&1
Install libelektra-test of the previous version and run again:
CHECK_VERSION=NO kdb run_all > deb/$DVERSION/run_all_abi 2>&1
== Test external tools ==
Check if tools based on elektra still do:
dq
Run unit-tests in-source again (because some use installed Elektra):
make run_all
== Test external test suites ==
#https://github.com/oyranos-cms/oyranos/blob/master/src/tests/test2.cpp#L185
#https://github.com/oyranos-cms/oyranos/blob/master/src/liboyranos_config/oyranos_elektra.c#L195
git clone git@github.com:oyranos-cms/oyranos.git
cd oyranos
mkdir build
cd build
cmake .. # might fail, simply comment out missing libs
make -j5 # not needed
make test2 # or make test-2 for the most of the tests
src/tests/test2 Elektra
== Documentation ==
And the API docu:
mkdir ~elektra-doc/api/$VERSION/
cd ~build && cmake -DBUILD_PDF=ON . && rm -rf doc && make html man && cp -ra doc/html doc/latex doc/man ~elektra-doc/api/$VERSION/
Symlink current to latest version and add everything:
cd ~elektra-doc/api/ && rm current && ln -s $VERSION current && git-add current $VERSION && git-commit -a -m "$VERSION Release"
= Publish =
== Debian Package ==
cd ~elektra/deb/$DVERSION && reprepro --ignore=wrongdistribution include wheezy elektra_${DVERSION}_`dpkg-architecture -qDEB_BUILD_ARCH`.changes && update-reprepro
== Commit source package ==
Commit elektra-ftp:
cd ~elektra-ftp && git-add releases/elektra-$VERSION.tar.gz* && git-commit -a -m "Release $VERSION"
== push ==
Now we know that everything worked well:
Now push release branch with tags to github:
cd ~e && git-push && git-push --tags
Push elektra-ftp:
cd ~elektra-ftp && git push && git push github
Push elektra-doc to github:
cd ~elektra-doc && git push && git push github
== Announce ==
Finish NEWS.md for new release (hashsum, add links where to download release, check them):
editor doc/NEWS.md
Add entry for release at main page
editor README.md
Check spelling, links and line length
Add text also to
libelektra.org/releases
Finally send out mail to list
(Personal notice: see also NOTIFY)