This page describes the Release Management principles for Apache CloudStack 4.6 and newer releases.
Contents:
As a RM I want master to be stable at all times
so that I can create release candidates of high quality
that require little QA and can thus be released fast and often.
Master needs to be stable at all times
Stable master means all code can be cleanly compiled, all automated tests are passing (giving enough room for exceptions when automated test are flakey), and test coverage does not go down* (otherwise that would render the automated testing less useful every time).
*Coverage may go down if code that was covered is deleted
About LGTM
LGTM, "Looks Good To Me" is given once a reviewer of a Pull Requests gives an OK to proceed.
Please note:
The release process would work like this (x=major, y=minor):
Important
Starting in 4.6, we no longer use cherry-picking to get commits from master to release branches.
Instead, we merge a PR to a release branch, then merge it forward to the next release and finally master. See image for example.
See this wiki article for a guide on how to do it.
The biggest discussion we had when writing up these principles, was the choice between either:
The benefit of 1) is that we know everything will be in master. The downside is that cherry-picking changes the commit hashes which makes it hard to find in which releases a given commit is.
The big benefit of 2) is that when we merge a pull request to the oldest release and merge it forward, the commit hashes stay the same all the time. We also automatically make sure that bugs are fixes in supported releases.
As a bonus of 2), when we work like this, GitHub will much better detect we merged certain pull requests that now stay "open", even when we write "This closes #1234.
That's why we decided to go for option number 2.
Git commands:
# Get the exact same commits from the pull-request (the commit hashes must not change) git fetch origin pull/${prId}/head:pr/${prId} # Commit it without fast-forwarding. Type the commit message as detailed below. git merge --no-ff --log pr/${prId} # Finally, sign the merge commit. git commit --amend -s --allow-empty-message -m ''
An optional helper script with detailed usage and help can be found here.
# Make sure you're on the branch you want to merge into git checkout ${branch} # Merge to the next branch and type the commit message as described below. git merge --no-ff --log ${branch_to_merge}
An optional helper script with detailed usage and help can be found here.
The tools are located in the CloudStack repository.
The commit message for a merging a pull request, should look like this:
Merge pull request #{pr number} from @ {user name of pr author}
* pr/{pr number}: {list of commit messages} Signed-off-by: {name and email of ACS committer that merges the pr}
It is important the pull request is merged to the branch. This script will help you do that (it will be added to the CloudStack repository).
Usage:
git pr 1234
Detailed usage and help can be found here.
The commit message for forward merging, should look like this:
Merge fix release {source branch} to {current branch} * {source branch}: {list of commit messages}
It is important the pull request is forward merged to the next branch. This script will help you do that (it will be added to the CloudStack repository).
Usage:
git fwd-merge some-branch
Detailed usage and help can be found here.
Important
We should all use the same tools to merge pull requests and do forward merges!
When using these tools and this way of working on Apache CloudStack keep in mind that you work with two origins:
If you merge on a clone of one of them while it is behind on the other (or with its origin) you are merging on a commit that is no longer a HEAD. You will get an error when you push due to conflicts. At this point it is safest to throw away your merge, update (git fetch) you local clones and merge the PR again.
Originally written by Rajani Karuturi in PR 1071:
Initial merge of 4.6 to master ignored pom.xml version number changes and changes to debian/changelog and engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java Following commands were executed 1. git checkout 4.6 2. git pull --rebase 3. git checkout master 4. git pull --rebase 5. git fwd-merge 4.6 6. git diff --name-only | grep pom.xml | xargs git checkout --ours 7. git diff --name-only | grep pom.xml | xargs git add 8. git checkout --ours engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java 9. git add engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java 10. git checkout --ours debian/changelog 11. git add debian/changelog 12. # manually edited version number in tools/marvin/marvin/deployAndRun.py and tools/marvin/setup.py 13. git commit 14. git checkout -b "merge-46-to-master" Send this as a PR
Monthly release schema
The monthly release schema looks like this:
Day 1: release of 4.x.0
Day 14: release of 4.x.1
Day 14: feature freeze 4.(x+1).0
Day 21: 4.(x+1).0 RC
Day 28: release of 4.x.2
Based on these principles, Rajani Karuturi and Remi Bergsma volunteered to be the Release Managers of Apache CloudStack 4.6.
Thanks to Rajani Karuturi, Daan, Miguel Ferreira, Wilder Rodrigues and all others for working on this with me (Remi Bergsma).
2 Comments
Daan
add 'new' git pr
add git merge procedure
Remi Bergsma
Done!