]> granicus.if.org Git - icinga2/blob - RELEASE.md
Merge pull request #6750 from davidtek/master
[icinga2] / RELEASE.md
1 # Release Workflow <a id="release-workflow"></a>
2
3 #### Table of Content
4
5 - [1. Preparations](#preparations)
6   - [1.1. Issues](#issues)
7   - [1.2. Backport Commits](#backport-commits)
8   - [1.3. Authors](#authors)
9 - [2. Version](#version)
10 - [3. Changelog](#changelog)
11 - [4. Git Tag](#git-tag)
12 - [5. Package Builds](#package-builds)
13   - [5.1. RPM Packages](#rpm-packages)
14   - [5.2. DEB Packages](#deb-packages)
15 - [6. Build Server](#build-server)
16 - [7. Release Tests](#release-tests)
17 - [8. GitHub Release](#github-release)
18 - [9. Chocolatey](#chocolatey)
19 - [10. Post Release](#post-release)
20   - [10.1. Online Documentation](#online-documentation)
21   - [10.2. Announcement](#announcement)
22   - [10.3. Project Management](#project-management)
23
24 ## Preparations <a id="preparations"></a>
25
26 Specify the release version.
27
28 ```
29 VERSION=2.10.2
30 ```
31
32 Add your signing key to your Git configuration file, if not already there.
33
34 ```
35 vim $HOME/.gitconfig
36
37 [user]
38         email = michael.friedrich@icinga.com
39         name = Michael Friedrich
40         signingkey = D14A1F16
41 ```
42
43 ### Issues <a id="issues"></a>
44
45 Check issues at https://github.com/Icinga/icinga2
46
47 ### Backport Commits <a id="backport-commits"></a>
48
49 For minor versions you need to manually backports any and all commits from the
50 master branch which should be part of this release.
51
52 ### Authors <a id="authors"></a>
53
54 Update the [.mailmap](.mailmap) and [AUTHORS](AUTHORS) files:
55
56 ```
57 git checkout master
58 git log --use-mailmap | grep '^Author:' | cut -f2- -d' ' | sort | uniq > AUTHORS
59 ```
60
61 ## Version <a id="version"></a>
62
63 Update the version:
64
65 ```
66 sed -i "s/Version: .*/Version: $VERSION/g" VERSION
67 ```
68
69 ## Changelog <a id="changelog"></a>
70
71 Update the [CHANGELOG.md](CHANGELOG.md) file.
72
73 ### Requirements
74
75 Export these environment variables:
76
77 ```
78 export ICINGA_GITHUB_AUTH_USERNAME='user'
79 export ICINGA_GITHUB_AUTH_TOKEN='token'
80 export ICINGA_GITHUB_PROJECT='icinga/icinga2'
81 ```
82
83 ### Generation
84
85 **Close the version on [GitHub](https://github.com/Icinga/icinga2/milestones).**
86
87 Run the script which updates the [CHANGELOG.md](CHANGELOG.md) file.
88
89 ```
90 ./changelog.py
91 git diff
92 ```
93
94 ## Git Tag  <a id="git-tag"></a>
95
96 > **Major Releases**: Commit these changes to the `master` branch.
97 >
98 > **Minor Releases**: Commit changes to the `support` branch.
99
100 ```
101 git commit -v -a -m "Release version $VERSION"
102 ```
103
104 Create a signed tag (tags/v<VERSION>) on the `master` branch (for major
105 releases) or the `support` branch (for minor releases).
106
107 ```
108 git tag -s -m "Version $VERSION" v$VERSION
109 ```
110
111 Push the tag:
112
113 ```
114 git push --tags
115 ```
116
117 **For major releases:** Create a new `support` branch:
118
119 ```
120 git checkout master
121 git push
122
123 git checkout -b support/2.11
124 git push -u origin support/2.11
125 ```
126
127 **For minor releases:** Push the support branch, cherry-pick the release commit
128 into master and merge the support branch:
129
130 ```
131 git push -u origin support/2.10
132 git checkout master
133 git cherry-pick support/2.10
134 git merge --strategy=ours support/2.10
135 git push origin master
136 ```
137
138 ## Package Builds  <a id="package-builds"></a>
139
140 ### RPM Packages  <a id="rpm-packages"></a>
141
142 ```
143 git clone git@github.com:icinga/rpm-icinga2.git && cd rpm-icinga2
144 ```
145
146 #### Branch Workflow
147
148 **Major releases** are branched off `master`.
149
150 ```
151 git checkout master && git pull
152 ```
153
154 **Bugfix releases** are created in the `release` branch and later merged to master.
155
156 ```
157 git checkout release && git pull
158 ```
159
160 #### Release Commit
161
162 Set the `Version`, `Revision` and `changelog` inside the spec file.
163
164 ```
165 sed -i "s/Version: .*/Version: $VERSION/g" icinga2.spec
166
167 vim icinga2.spec
168
169 %changelog
170 * Tue Jul 17 2018 Michael Friedrich <michael.friedrich@icinga.com> 2.9.0-1
171 - Update to 2.9.0
172 ```
173
174 ```
175 git commit -av -m "Release 2.9.0-1"
176 git push
177 ```
178
179 **Note for major releases**: Update release branch to latest.
180
181 ```
182 git checkout release && git pull && git merge master && git push
183 ```
184
185 **Note for minor releases**: Cherry-pick the release commit into master.
186
187 ```
188 git checkout master && git pull && git cherry-pick release && git push
189 ```
190
191
192 ### DEB Packages  <a id="deb-packages"></a>
193
194 ```
195 git clone git@github.com:icinga/deb-icinga2.git && cd deb-icinga2
196 ```
197
198 #### Branch Workflow
199
200 **Major releases** are branched off `master`.
201
202 ```
203 git checkout master && git pull
204 ```
205
206 **Bugfix releases** are created in the `release` branch and later merged to master.
207
208 ```
209 git checkout release && git pull
210 ```
211
212 #### Release Commit
213
214 Set the `Version`, `Revision` and `changelog` inside the spec file.
215
216 ```
217 ./dch 2.9.0-1 "Update to 2.9.0"
218 ```
219
220 ```
221 git commit -av -m "Release 2.9.0-1"
222 git push
223 ```
224
225 ```
226 git commit -av -m "Release 2.9.0-1"
227 ```
228
229 **Note for major releases**: Update release branch to latest.
230
231 ```
232 git checkout release && git pull && git merge master && git push
233 ```
234
235 **Note for minor releases**: Cherry-pick the release commit into master.
236
237 ```
238 git checkout master && git pull && git cherry-pick release && git push
239 ```
240
241 #### DEB with dch on macOS
242
243 ```
244 docker run -v `pwd`:/mnt/packaging -ti ubuntu:xenial bash
245
246 apt-get update && apt-get install git ubuntu-dev-tools vim -y
247 cd /mnt/packaging
248
249 git config --global user.name "Michael Friedrich"
250 git config --global user.email "michael.friedrich@icinga.com"
251
252 ./dch 2.10.0-1 "Update to 2.10.0"
253 ```
254
255
256 ## Build Server <a id="build-server"></a>
257
258 * Verify package build changes for this version.
259 * Test the snapshot packages for all distributions beforehand.
260 * Build the newly created Git tag for Debian/RHEL/SuSE.
261   * Wait until all jobs have passed and then publish them one by one with `allow_release`
262 * Build the newly created Git tag for Windows: `refs/tags/v2.10.0` as source and `v2.10.0` as package name.
263
264 ## Release Tests  <a id="release-tests"></a>
265
266 * Test DB IDO with MySQL and PostgreSQL.
267 * Provision the vagrant boxes and test the release packages.
268 * Test the [setup wizard](https://packages.icinga.com/windows/) inside a Windows VM.
269 * Start a new docker container and install/run icinga2.
270
271 ### CentOS
272
273 ```
274 docker run -ti centos:latest bash
275
276 yum -y install https://packages.icinga.com/epel/icinga-rpm-release-7-latest.noarch.rpm
277 yum -y install icinga2
278 icinga2 daemon -C
279 ```
280
281 ### Debian
282
283 ```
284 docker run -ti debian:stretch bash
285
286 apt-get update && apt-get install -y wget curl gnupg apt-transport-https
287
288 DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release); \
289  echo "deb http://packages.icinga.com/debian icinga-${DIST} main" > \
290  /etc/apt/sources.list.d/${DIST}-icinga.list
291  echo "deb-src http://packages.icinga.com/debian icinga-${DIST} main" >> \
292  /etc/apt/sources.list.d/${DIST}-icinga.list
293
294 curl https://packages.icinga.com/icinga.key | apt-key add -
295 apt-get -y install icinga2
296 icinga2 daemon
297 ```
298
299 ## GitHub Release  <a id="github-release"></a>
300
301 Create a new release for the newly created Git tag: https://github.com/Icinga/icinga2/releases
302
303 ## Chocolatey  <a id="chocolatey"></a>
304
305 Navigate to the git repository on your Windows box which
306 already has chocolatey installed. Pull/checkout the release.
307
308 Create the nupkg package (or use the one generated on https://packages.icinga.com/windows):
309
310 ```
311 cpack
312 ```
313
314 Fetch the API key from https://chocolatey.org/account and use the `choco push`
315 command line.
316
317 ```
318 choco apikey --key xxx --source https://push.chocolatey.org/
319
320 choco push Icinga2-v2.10.0.nupkg --source https://push.chocolatey.org/
321 ```
322
323
324 ## Post Release  <a id="post-release"></a>
325
326 ### Online Documentation  <a id="online-documentation"></a>
327
328 Navigate to `puppet-customer/icinga.git` and do the following steps:
329
330 #### Testing
331
332 ```
333 git checkout testing && git pull
334 vim files/var/www/docs/config/icinga2-latest.yml
335
336 git commit -av -m "icinga-web1: Update docs for Icinga 2"
337
338 git push
339 ```
340
341 SSH into icinga-web1 and do a manual Puppet dry run with the testing environment.
342
343 ```
344 puppet agent -t --environment testing --noop
345 ```
346
347 Once succeeded, continue with production deployment.
348
349 #### Production
350
351 ```
352 git checkout master && git pull
353 git merge testing
354 git push
355 ```
356
357 SSH into icinga-web1 and do a manual Puppet run from the production environment (default).
358
359 ```
360 puppet agent -t
361 ```
362
363 ### Announcement  <a id="announcement"></a>
364
365 * Create a new blog post on icinga.com/blog
366 * Social media: [Twitter](https://twitter.com/icinga), [Facebook](https://www.facebook.com/icinga), [Xing](https://www.xing.com/communities/groups/icinga-da4b-1060043), [LinkedIn](https://www.linkedin.com/groups/Icinga-1921830/about)
367 * Update IRC channel topic
368
369 ### Project Management  <a id="project-management"></a>
370
371 * Add new minor version on [GitHub](https://github.com/Icinga/icinga2/milestones).