icinga2/RELEASE.md

143 lines
3.7 KiB
Markdown
Raw Normal View History

2015-12-07 16:29:19 +01:00
# Release Workflow
2015-04-20 16:43:17 +02:00
2015-12-07 16:29:19 +01:00
Print this document.
2016-08-30 15:13:06 +02:00
Specify the release version.
2017-03-29 09:51:33 +02:00
VERSION=2.6.3
2016-08-30 15:13:06 +02:00
2015-12-07 16:29:19 +01:00
## Issues
Check issues at https://github.com/Icinga/icinga2
2016-04-20 18:35:19 +02:00
## Backport Commits
2017-02-13 10:51:27 +01:00
For minor versions you need to manually backports any and all commits from the
master branch which should be part of this release.
2016-04-20 18:35:19 +02:00
## Authors
Update the [.mailmap](.mailmap) and [AUTHORS](AUTHORS) files:
2016-04-21 09:51:11 +02:00
$ git checkout master
$ git log --use-mailmap | grep ^Author: | cut -f2- -d' ' | sort | uniq > AUTHORS
## Version
Update the version number in the following file:
* [icinga2.spec]: Version: (.*)
2016-08-30 15:13:06 +02:00
Example:
gsed -i "s/Version: .*/Version: $VERSION/g" icinga2.spec
## Changelog
Update the [CHANGELOG.md](CHANGELOG.md), [doc/1-about.md](doc/1-about.md) files. Also generate HTML
2017-02-13 10:51:27 +01:00
for the wordpress release announcement.
2015-06-18 15:53:08 +02:00
## Git Tag
Commit these changes to the "master" branch:
2016-08-30 15:13:06 +02:00
$ git commit -v -a -m "Release version $VERSION"
For minor releases: Cherry-pick this commit into the "support" branch.
Create a signed tag (tags/v<VERSION>) on the "master" branch (for major
releases) or the "support" branch (for minor releases).
GB:
2016-08-30 15:13:06 +02:00
$ git tag -u EE8E0720 -m "Version $VERSION" v$VERSION
MF:
2016-08-30 15:13:06 +02:00
$ git tag -u D14A1F16 -m "Version $VERSION" v$VERSION
Push the tag.
$ git push --tags
For major releases: Create a new "support" branch:
$ git checkout master
2016-12-14 15:22:29 +01:00
$ git checkout -b support/2.6
$ git push -u origin support/2.6
2015-07-15 12:38:15 +02:00
2015-10-22 13:41:31 +02:00
For minor releases: Push the support branch, cherry-pick the release commit
into master and merge the support branch:
2015-07-15 12:38:15 +02:00
2016-12-14 15:22:29 +01:00
$ git push -u origin support/2.6
2015-07-15 12:38:15 +02:00
$ git checkout master
2016-12-14 15:22:29 +01:00
$ git cherry-pick support/2.6
$ git merge --strategy=ours support/2.6
2015-07-15 12:38:15 +02:00
$ git push origin master
2015-04-20 16:43:17 +02:00
# External Dependencies
## Build Server
2016-12-14 15:22:29 +01:00
* Verify package build changes for this version.
* Test the snapshot packages for all distributions beforehand.
2016-04-20 18:35:19 +02:00
* Build the newly created Git tag for Debian/RHEL/SuSE.
* Build the newly created Git tag for Windows.
2015-12-07 16:29:19 +01:00
2016-04-20 18:35:19 +02:00
## Release Tests
2015-06-17 14:22:59 +02:00
2016-04-20 18:35:19 +02:00
* Test DB IDO with MySQL and PostgreSQL.
2015-04-20 16:43:17 +02:00
* Provision the vagrant boxes and test the release packages.
* Test the [setup wizard](https://packages.icinga.com/windows/) inside a Windows VM.
2016-04-20 18:35:19 +02:00
* Start a new docker container and install/run icinga2.
2015-06-17 14:22:59 +02:00
Example for CentOS7:
2016-04-20 18:35:19 +02:00
$ docker run -ti centos:latest bash
2015-07-08 12:55:50 +02:00
# yum -y install https://packages.icinga.com/epel/7/release/noarch/icinga-rpm-release-7-1.el7.centos.noarch.rpm
2015-07-08 12:55:50 +02:00
# yum -y install icinga2
# icinga2 daemon -C
2015-06-17 14:22:59 +02:00
# systemctl start icinga2
# tail -f /var/log/icinga2/icinga2.log
## GitHub Release
2015-04-20 16:43:17 +02:00
Create a new release for the newly created Git tag.
2015-04-20 16:43:17 +02:00
https://github.com/Icinga/icinga2/releases
## Chocolatey
Navigate to the git repository on your Windows box which
already has chocolatey installed. Pull/checkout the release.
Create the nupkg package:
cpack
Install the created icinga2 package locally:
2017-03-29 09:51:33 +02:00
choco install icinga2 -version 2.6.3 -fdv "%cd%" -source "'%cd%;https://chocolatey.org/api/v2/'"
Upload the package to [chocolatey](https://chocolatey.org/packages/upload).
2015-04-20 16:43:17 +02:00
## Online Documentation
SSH into the web box, navigate into `icinga2-latest/module/icinga2`
2016-04-20 18:35:19 +02:00
and pull the current support branch.
2015-04-20 16:43:17 +02:00
## Announcement
2016-12-14 15:22:29 +01:00
* Create a new blog post on www.icinga.com/blog
2015-04-20 16:43:17 +02:00
* Send announcement mail to icinga-announce@lists.icinga.org
* Social media: [Twitter](https://twitter.com/icinga), [Facebook](https://www.facebook.com/icinga), [G+](https://plus.google.com/+icinga), [Xing](https://www.xing.com/communities/groups/icinga-da4b-1060043), [LinkedIn](https://www.linkedin.com/groups/Icinga-1921830/about)
2015-12-07 16:29:19 +01:00
* Update IRC channel topic
# After the release
* Add new minor version
2016-04-20 18:35:19 +02:00
* Close the released version
2015-12-07 16:29:19 +01:00
* Update Redmine filters for the next major/minor version