Thunderbird/Release Driving/Rapid Release Activities/Merge Repositories
Setting up

You'll need access to:
- Mercurial (level 3)
- treestatus (one of the existing Thunderbird folks should be able to ask the Sheriffs to give you access).
Clone the drivertools repo
hg clone http://hg.mozilla.org/users/bugzilla_standard8.plus.com/drivertools/ cd drivertools/comm-merges
Merges Overview
When merges happen
Merges should be done in the order:
- comm-beta -> comm-release (used by SeaMonkey)
- comm-aurora -> comm-beta
- comm-central -> comm-aurora
The comm-beta -> comm-release merge is typically done a few days before the main merges. Normally the SeaMonkey folks determine when. At the latest it is done on Merge day.
The other two merges happen on Merge Day. This can be determined by looking at the release calendar.
On Merge Day, hook up with RelEng (mergeduty) to check when the mozilla-* repositories are being merged. These typically happen sometime in the morning Pacific Time - we aim to do the comm-* repositories after the mozilla-* ones, so that we don't have broken builds on the branches.
How to close the Trees
Use treestatus for closing trees. Set the "state" to CLOSED with a reason of "for merges" with the "Planned closure" tick box selected.
For each merge ensure the relevant trees are closed, e.g. for comm-beta -> comm-release, ensure:
- comm-beta-thunderbird
- comm-beta-seamonkey
- comm-release-thunderbird
- comm-release-seamonkey
Reopening the Trees
Reopening trees is only done when:
- For central: after the merges are completed and the version numbers have been bumped.
- For aurora: after the merges are completed *and* the builds have been completed.
- For beta: This remains closed after a comm-beta -> comm-release merge until after the comm-aurora -> comm-beta merge has been completed and the builds have been completed.
- For release: This remains closed as developers shouldn't be pushing to it.
When re-opening the tree, ensure you set it to the state that it was previously (generally "approval-required" for aurora/beta and "open" for central). There's a history on the page where you can check.
Doing the actual merges
These assume you've read the previous detail.
The scripts are run from the drivertools/comm-merges directory.
comm-beta -> comm-release
- Close the relevant trees
- Reset the repos (this removes any previous repository & creates a fresh clone)
./resetreleaserepos.sh
- Run the script
./merge-beta-2-release.sh &> beta2release.log less beta2release.log
- Check the log for:
- Any errors
- Outgoing tag to comm-beta
- The diff of changes committed to comm-release looks OK
- The outgoing changes to comm-release look ok, including closing of the old head, and tagging at the start and end of the list.
- Now push the beta tag (this doesn't cause any builds, as it doesn't change anything)
hg -R beta push
- and the release builds (we generally haven't clobbered these as SeaMonkey's clobberer hasn't been up and running)
hg -R release push -f
comm-aurora -> comm-beta merge
Run the script
./merge-aurora-2-beta.sh &>aurora2beta.log less aurora2beta.log
When viewing the log check for:
- Outgoing tag to comm-aurora
- The diff of changes committed to comm-beta looks OK
- The outgoing changes to comm-beta look ok, including closing of the old head, and tagging at the start and end of the list.
When ready:
hg push -R aurora
This won't cause anything to build, but will push the tag.
Note: It is best if the next part is done in association with the mozilla-aurora to mozilla-beta merge
Clobber the comm-beta builds using clobberer
Then push to comm-beta:
hg push -R beta -f
Once the builders have run, check that you still have green builds.
comm-central -> comm-aurora merge
Run the script
./merge-central-2-aurora.sh &>central2aurora.log less central2aurora.log
When viewing the log check for:
- Outgoing tag to comm-central
- The diff of changes committed to comm-aurora looks OK
- The outgoing changes to comm-aurora look ok, including closing of the old head, and tagging at the start and end of the list.
When ready:
hg push -R central
Note: It is best if the next part is done in association with the mozilla-aurora to mozilla-beta merge
Clobber the comm-aurora builds using clobberer
Then push to comm-aurora:
hg push -R aurora -f
Once the builders have run, check that you still have green builds.
Central version bumps
Bump the versions in
central/mail/config/version.txt central/suite/config/version.txt
and commit with a message like "Version bumps for SeaMonkey and Thunderbird a=auroramerge".
Post-Merge tidy
Please commit and push any changes to the drivertools repo, for history purposes.