Fixing my notes on tagging
[ikiwiki.git] / docs / developer / Release / index.mdwn
1 #The art of releasing
2
3 This is a template on how to do a release.
4
5 ##Branching
6
7 On crater branch the repo:
8
9     cd /repository/git/dragonfly.git
10     git branch DragonFly_RELEASE_x_y        (e.g. 2_8)
11
12 This is the only step that needs to happen remotely.
13
14 On your own system:
15
16 Check out two copies of /usr/src, one with master checked out, one with the new release branch checked out.  Checkouts should be under your user id, NOT as root, or the later tagging operation will be unhappy.
17
18 On the new branch:
19
20     vi sys/sys/param.h      
21
22 Edit \__DragonFly\_version and related comments.  Be sure to add a comment for the new master too (but the version is set to the new release).
23
24     vi sys/conf/newvers.sh  
25
26 Edit BRANCH, use 'RELEASE', update version.  e.g. RELEASE_2_8
27
28 On master
29
30     vi sys/sys/param.h
31
32 Edit \__DragonFly\_version and related comments.
33
34     vi sys/conf/newvers.sh  
35
36 Edit BRANCH, use 'DEVELOPMENT', update version.
37
38 ##Tagging
39
40 Make sure all changes on the master branch and on the new branch have been committed and pushed before tagging anything.
41
42 man git-tag for info, the committer needs GPG set up so git tag -s works.  Then you can use your own checkout.  Be sure the checkouts are under your user id and you do the tagging as yourself instead of as root.
43
44 ###In master
45
46     git tag -s -m "DragonFly 2.x.x" v2.x.x
47     git push --tags
48
49 ###In the new branch
50
51     git tag -s -m "DragonFly 2.x.x" v2.x.x
52     git push --tags
53
54 Do the x.x.0 immediately.  Just before doing the final nrelease build roll a x.x.1 tag for the release branch.  Release as x.x.1.
55
56 ## Subsequent tag updates
57
58 When updating a x.x.1 version, you just need to tag.
59
60 ## Something in GCC
61
62 The file gnu/usr.bin/cc41/cc_prep/config/dragonfly.h has a spot where the major version number for DragonFly is encoded.  I don't know if this applies for anything other than gcc 4.1.
63
64     #define        DFBSD_MAJOR     3
65
66 This comes from John Marino's commit:
67
68 <http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/43add724990da155c21ef4a0893f4ebc2c36eb05>
69
70 ##Pkgsrc 
71
72 Adjust bulk builds to the release's pkgsrc branch, and make sure they upload to the right directories on avalon.dragonflybsd.org.
73
74 Adjust the default pkgsrc checkout in /usr/src/etc/Makefile.usr for both master and the new branch if necessary.
75
76 ###build isos and imgs
77
78
79
80 ###build pkgsrc packages
81
82 ###Testing
83
84 Testing should be done on real hardware, qemu and vmware. We have six isos/imgs that needs testing.
85
86 i386 iso, img, gui-img<br/>
87 x86_64 iso, img, gui-img
88
89 Test this:
90
91 * Booting install media.
92 * Installing; encrypted, unencrypted, ufs, hammer.
93 * Configuring everything in the installer; try both dhcp and static IP.
94 * Booting the installed system.
95
96 ###Release Notes
97
98 Copy one of the existing release pages.  The general format is :
99
100 * General announcement
101 * Big items new to this release
102 * Availability, describing what can be run
103 * MD5 results for compressed and uncompressed files
104 * Special notes and caveats
105 * Release notes - go through git log for these.
106
107 #### Minor releases
108
109 * Update the release page, the main page, and the general [[Download]] page.
110 * Add new MD5 sums.
111
112 ###File Copy
113
114 Place images in /ftp/iso-images on crater.dragonflybsd.org.  They will be rsynced to mirror-master.
115
116 ###announce
117 users@, web page