]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/contributor/release-work.itexi
CG: put release update in staging
[lilypond.git] / Documentation / contributor / release-work.itexi
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @node Release work
3 @chapter Release work
4
5 @menu
6 * Development phases::
7 * Minor release checklist::
8 * Major release checklist::
9 * Release extra notes::
10 @end menu
11
12
13 @node Development phases
14 @section Development phases
15
16 There are 2 states of development on @code{master}:
17
18 @enumerate
19
20 @item @strong{Normal development}:
21 Any commits are fine.
22
23 @item @strong{Build-frozen}:
24 Do not require any additional or updated libraries or make
25 non-trivial changes to the build process.  Any such patch (or
26 branch) may not be merged with master during this period.
27
28 This should occur approximately 1 month before any alpha version
29 of the next stable release, and ends when the next unstable branch
30 begins.
31
32 @end enumerate
33
34
35 After announcing a beta release, branch @code{stable/2.x}.  There
36 are 2 states of development for this branch:
37
38 @enumerate
39 @item @strong{Normal maintenance}:
40 The following patches @strong{MAY NOT} be merged with this branch:
41
42 @itemize
43 @item Any change to the input syntax.  If a file compiled with a
44 previous @code{2.x} (beta) version, then it must compile in the
45 new version.
46
47 Exception: any bugfix to a Critical issue.
48
49 @item New features with new syntax @emph{may be committed},
50 although once committed that syntax cannot change during the
51 remainder of the stable phase.
52
53 @item Any change to the build dependencies (including programming
54 libraries, documentation process programs, or python modules used
55 in the buildscripts).  If a contributor could compile a previous
56 lilypond @code{2.x}, then he must be able to compile the new
57 version.
58
59 @end itemize
60
61 @item @strong{Release prep}:
62 Only translation updates and important bugfixes are allowed.
63
64 @end enumerate
65
66
67 @node Minor release checklist
68 @section Minor release checklist
69
70 A @qq{minor release} means an update of @code{y} in @code{2.x.y}.
71
72 @subheading Pre-release
73
74 @enumerate
75
76 @item
77 Switch to the release branch, get changes, prep release
78 announcement:
79
80 @example
81 git checkout release/unstable
82 git merge origin
83 vi Documentation/web/news-front.itexi Documentation/web/news.itexi
84 @end example
85
86 @item
87 Commit, push, switch back to master:
88
89 @example
90 git commit -m "Release: update news." Documentation/web/
91 git push origin
92 @end example
93
94 @item
95 If you do not have the previous release test-output tarball, download
96 it and put it in @code{regtests/}
97
98 @item Prepare GUB environment by running:
99
100 @example
101 ### my-gub.sh
102 # special terminal, and default PATH environment.
103 # import these special environment vars:
104 #   HOME, HTTP_PROXY, TERM
105 env -i \
106   HOME=$HOME \
107   HTTP_PROXY=$HTTP_PROXY \
108   bash --rcfile my-bashrc
109 @end example
110
111 @example
112 ### my-bashrc
113 export PS1="\[\e[1;33mGUB-ENV \w\]$ \[\e[0m\]"
114 export PATH=$PATH
115 export TERM=xterm
116 @end example
117
118
119 @item Build release on GUB by running:
120
121 @example
122 make LILYPOND_BRANCH=release/unstable lilypond
123 @end example
124
125 @noindent
126 or something like:
127
128 @example
129 make LILYPOND_BRANCH=stable/2.12 lilypond
130 @end example
131
132 @item Check the regtest comparison in @file{uploads/webtest/} for
133 any unintentional breakage.  More info in
134 @ref{Precompiled regression tests}.
135
136 @item If any work was done on GUB since the last release, upload
137 binaries to a temporary location, ask for feedback, and wait a day
138 or two in case there's any major problems.
139
140 @warning{Always do this for a stable release.}
141
142 @end enumerate
143
144
145 @subheading Actual release
146
147 @enumerate
148
149 @item If you're not the right user on the webserver, remove the
150 @code{t} from the rsync command in:
151
152 @example
153 test-lily/rsync-lily-doc.py
154 test-lily/rsync-test.py
155 @end example
156
157 @code{graham} owns v2.13; @code{han-wen} owns v2.12.
158
159 @item Upload GUB by running:
160
161 @example
162 make lilypond-upload \
163   LILYPOND_REPO_URL=git://git.sv.gnu.org/lilypond.git \
164   LILYPOND_BRANCH=release/unstable
165 @end example
166
167 @noindent
168 or something like:
169
170 @example
171 make lilypond-upload \
172   LILYPOND_REPO_URL=git://git.sv.gnu.org/lilypond.git \
173   LILYPOND_BRANCH=stable/2.12
174 @end example
175
176 @end enumerate
177
178
179 @subheading Post release
180
181 @enumerate
182
183 @item Switch back to master and get the updated news:
184
185 @example
186 git checkout origin/staging
187 git merge release/unstable
188 @end example
189
190 @item Update @file{VERSION} in lilypond git and upload changes:
191
192 @example
193 vi VERSION
194 @end example
195
196 @itemize
197 @item
198 VERSION = what you just did +0.0.1
199
200 @item
201 DEVEL_VERSION = what you just did (i.e. is now online)
202
203 @item
204 STABLE_VERSION = what's online (probably no change here)
205
206 @end itemize
207
208 @example
209 git commit -m "Release: bump version." VERSION
210 git push origin HEAD:staging
211 @end example
212
213
214 @item (for now) do a @code{make doc} and manually upload:
215
216 @example
217 ### upload-lily-web-media.sh
218 #!/bin/sh
219 BUILD_DIR=$HOME/src/build-lilypond
220
221 PICS=$BUILD_DIR/Documentation/pictures/out-www/
222 EXAMPLES=$BUILD_DIR/Documentation/web/ly-examples/out-www/
223
224 cd $BUILD_DIR
225 rsync -a $PICS graham@@lilypond.org:media/pictures
226 rsync -a $EXAMPLES graham@@lilypond.org:media/ly-examples
227 @end example
228
229 @item Wait a few hours for the website to update.
230
231 @item Email release notice to @code{info-lilypond}
232
233 @end enumerate
234
235
236
237 @node Major release checklist
238 @section Major release checklist
239
240 A @qq{major release} means an update of @code{x} in @code{2.x.0}.
241
242 @subheading Main requirements
243
244 This is the current official guidelines.
245
246 @itemize
247 @item
248 0 Critical issues for two weeks (14 days) after the latest release
249 candidate.
250
251 @end itemize
252
253
254 @subheading Potential requirements
255
256 These might become official guidelines in the future.
257
258 @itemize
259 @item
260 Check reg test
261
262 @item
263 Check all 2ly scripts
264
265 @item
266 Check for emergencies the docs:
267
268 @example
269 grep FIXME --exclude "misc/*" --exclude "*GNUmakefile" \
270   --exclude "snippets/*" ????*/*
271 @end example
272
273 @item
274 Check for altered regtests, and document as necessary.  (update
275 numbers in the following command as appropriate)
276
277 @example
278 git diff -u -r release/2.12.0-1 -r release/2.13.13-1 input/regression/
279 @end example
280
281 @end itemize
282
283
284 @subheading Housekeeping requirements
285
286 Before the release:
287
288 @itemize
289 @item
290 write release notes.  note: stringent size requirements for
291 various websites, so be brief.
292
293 @item
294 Run convert-ly on all files, bump parser minimum version.
295
296 @item
297 Make directories on lilypond.org:
298
299 @example
300 ~/web/download/sources/v2.14
301 ~/web/download/sources/v2.15
302 @end example
303
304 @item
305 Shortly after the release, move all current contributors to
306 previous contributors in:
307
308 @example
309 Documentation/included/authors.itexi
310 @end example
311
312 Also, delete old material in:
313
314 @example
315 Documentation/changes.tely
316 @end example
317
318 but don't forget to check it still compiles!  also update the
319 version numbers.
320
321 @item
322 Website:
323
324 @itemize
325 @item
326 make a link from the old unstable to the next stable in
327 lilypond.org's /doc/ dir.  Keep all previous unstable->stable doc
328 symlinks.
329
330 Also, make the old docs self-contained -- if there's a redirect in
331 /doc/v2.12/Documentation/index.html , replace it with the
332 index.html.old-2.12 files.
333
334 The post-2.13 docs will need another way of handling the
335 self-containment.  It won't be hard to whip up a python script
336 that changes the link to ../../../../manuals.html to
337 ../website/manuals.html , but it's still a 30-minute task that
338 needs to be done before 2.16.
339
340 @item
341 doc auto redirects  to v2.LATEST-STABLE
342
343 @item
344 add these two lines to http://www.lilypond.org/robots.txt:
345
346 @example
347 Disallow: /doc/v2.PREVIOUS-STABLE/
348 Disallow: /doc/v2.CURRENT-DEVELOPMENT/
349 @end example
350
351 @end itemize
352
353 @end itemize
354
355 @subheading Unsorted
356
357 @itemize
358 @item
359 submit pots for translation: send url of tarball to
360 translation@@iro.umontreal.ca, mentioning lilypond-VERSION.pot
361
362 @item
363 update links to distros providing lilypond packages?  link in:
364 @file{Documentation/web/download.itexi}
365
366 This has nothing to do with the release, but it's a "periodic
367 maintenance" task that might make sense to include with releases.
368
369 @item
370 Send announcements to...
371
372 News:
373
374 @example
375 comp.music.research
376 comp.os.linux.announce
377
378 comp.text.tex
379 rec.music.compose
380 @end example
381
382 Mail:
383
384 @example
385 info-lilypond@@gnu.org
386
387 linux-audio-announce@@lists.linuxaudio.org
388 linux-audio-user@@lists.linuxaudio.org
389 linux-audio-dev@@lists.linuxaudio.org
390
391 tex-music@@icking-music-archive.org
392
393 --- non-existant?
394 abcusers@@blackmill.net
395
396 rosegarden-user@@lists.sourceforge.net
397 info-gnu@@gnu.org
398 noteedit-user@@berlios.de
399
400 gmane.comp.audio.fomus.devel
401 gmane.linux.audio.users
402 gmane.linux.audio.announce
403 gmane.comp.audio.rosegarden.devel
404 @end example
405
406 Web:
407
408 @example
409 lilypond.org
410 freshmeat.net
411 linuxfr.com
412 http://www.apple.com/downloads
413 harmony-central.com (news@@harmony-central.com)
414 versiontracker.com [auto]
415 hitsquad.com [auto]
416 http://www.svgx.org
417 https://savannah.gnu.org/news/submit.php?group_id=1673  @c => planet.gnu.org
418 @end example
419
420 @end itemize
421
422
423 @node Release extra notes
424 @section Release extra notes
425
426 @subsubheading Regenerating regression tests
427
428 Regenerating regtests (if the lilypond-book naming has changed):
429
430 @itemize
431
432 @item
433 git checkout release/lilypond-X.Y.Z-A
434
435 @item
436 take lilypond-book and any related makefile updates from the
437 latest git.
438
439 @item
440 configure; make; make test
441
442 @item
443 tar -cjf lilypond-X.Y.Z-A.test-output.tar.bz2 input/regression/out-test/
444
445 @item
446 mv lilypond-X.Y.Z-A.test-output.tar.bz2 ../gub/regtests/
447
448 @item
449 cd ../gub/regtests/
450
451 @item
452 make lilypond
453
454 @end itemize
455
456
457 @subsubheading stable/2.12
458
459 If releasing stable/2.12, then:
460
461 @itemize
462
463 @item
464 apply doc patch: patches/rsync-lily.patch  (or something like
465 that)
466
467 @item
468 change infodir in gub/specs/lilypond-doc.py from "lilypond.info"
469 to "lilypond-web.info"
470 @end itemize
471
472 @subsubheading Updating a release (changing a in x.y.z-a)
473
474 Really tentative instructions, almost certainly can be done
475 better.
476
477 @enumerate
478
479 @item
480 change the VERSION back to release you want.  push change.
481 (hopefully you'll have forgotten to update it when you made your
482 last release)
483
484 @item
485 make sure that there aren't any lilypond files floating around in
486 target/  (like usr/bin/lilypond).
487
488 @item
489 build the specific package(s) you want, i.e.
490
491 @example
492 bin/gub mingw::lilypond-installer
493 make LILYPOND_BRANCH=stable/2.12 -f lilypond.make doc
494 bin/gub --platform=darwin-x86 \
495   'git://git.sv.gnu.org/lilypond-doc.git?branch=stable/2.12'
496 @end example
497
498 or
499
500 build everything with the normal "make lilypond", then (maybe)
501 manually delete stuff you don't want to upload.
502
503 @item
504 manually upload them.  good luck figuring out the rsync
505 command(s).  Hints are in test-lily/
506
507 or
508
509 run the normal lilypond-upload command, and (maybe) manually
510 delete stuff you didn't want to upload from the server.
511
512 @end enumerate
513
514
515