Thunderbird/Release Driving/Rapid Release Activities/Merge Repositories: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(Remove comm-release from the merge day procedures.)
(→‎comm-central -> comm-beta merge: Update notes about beta's .gecko_rev.yml)
Line 164: Line 164:
** The outgoing changes to comm-central look ok, including the changes in version number.
** The outgoing changes to comm-central look ok, including the changes in version number.
* Now push central changes
* Now push central changes
* Push the result.


   hg -R central push
   hg -R central push
Line 173: Line 171:


==== Update comm-beta .gecko_rev.yml ====
==== Update comm-beta .gecko_rev.yml ====
Most of the time this can be done right away. But occasionally there's no BUILD1 tag to pin to yet. You can push to comm-beta without updating .gecko_rev.yml and Taskcluster will use the tip of default. Note that this is the case in the final email update so that whoever is covering tb-releng for that beta knows to update it prior to release promotion.


* Pin .gecko_rev.yml to the Firefox tag and revision from their first beta build (go to https://hg.mozilla.org/releases/mozilla-beta and look at the tags, it should be something like FIREFOX_77_0b1_BUILD1). Clicking on this will bring you to the revision which also has the revision hash to use.
* Pin .gecko_rev.yml to the Firefox tag and revision from their first beta build (go to https://hg.mozilla.org/releases/mozilla-beta and look at the tags, it should be something like FIREFOX_77_0b1_BUILD1). Clicking on this will bring you to the revision which also has the revision hash to use.

Revision as of 19:52, 16 November 2020

Setting up

Warning signWarning: The merge scripts download the comm-* repository bundles and create clones from those, and update them. These may use a large amount of data bandwidth to complete. This is done to ensure clean repositories.
Warning signWarning: You MUST disable the firefoxtree tree Mercurial extension before running any of these commands. The names interfere with the repository names used in the scripts.

You'll need access to:

  • Mercurial (level 3)
  • Access to modify treestatus
    • You can check if you have status by looking for the "assume:mozilla-group:vpn_treestatus" permission at https://tools.taskcluster.net/credentials
    • If necessary, 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

Warning signWarning: The comm-release repository is no longer being updated as part of merge day activities as it is no longer used by either Thunderbird or Seamonkey.

When merges happen

There is usually only one merge to perform:

  • comm-central -> comm-beta

Once a year, when the first ESR/new release repository is created also run (prior to comm-central -> comm-beta)

  • comm-beta -> comm-esrXX

Although the mozilla-beta -> mozilla-release merge is typically done about a week before the mozilla-central -> mozilla-beta merge, the comm merges are done all at once (after the mozilla-central -> mozilla-beta merge). You can see a calendar of when each merge day occurs on 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.

There's also a tool you can use in the drivertools repo that prints out the current mozilla-* and comm-* versions:

 ./get-versions.sh

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. It is easiest to tick "Remember this change to undo later" since we'll undo these fairly quickly. It is easiest to close these in pairs (e.g. the comm-beta-* together).

Ensure the relevant trees are closed.

  • comm-beta
  • comm-central

Most of the time it's not necessary to close comm-esrXX trees unless it's that time of year.

Reopening the Trees

Reopening trees is only done when:

  • For central: after the merges are completed and the version numbers have been bumped.
  • For beta: This remains closed after a comm-beta -> comm-release merge until after the comm-central -> comm-beta merge has been completed and the builds have been completed.

When re-opening the tree, ensure you set it to the state that it was previously (generally "approval-required" for beta/esrXX and "open" for central). If "Remember this change to undo later" was ticked while closing the trees you can just click the "Undo" button to set it back to the previous status.

Communication about merges

The morning of merge day, email the Thunderbird drivers mailing list with a message reminding them know of the plan for the day. Reply to this email in order to keep people up-to-date with what is happening.

Hello!

I'll be doing the merges this evening (Eastern time). The mozilla-* merges have <not yet been occurred or already happened>.

comm-central is going to version <new c-c version>, and comm-beta to <new c-b version>.

I'll be following the steps below: (available at [1], this includes updating ship-it/release-services and filing a bug for updating tracking flags). I'll be closing the trees before starting this.

I'll keep people up to date by replying to this email:

  • Email before merges begin
  • Close the trees
  • Perform the merges
  • Re-open c-c
  • Email after the merges
  • Wait for c-b builds to complete
  • Set c-b back to approval needed
  • Email once the builds are complete

Please let me know if you have any questions or comments.

Thanks, <your name>

[1] https://wiki.mozilla.org/Thunderbird/Release_Driving/Rapid_Release_Activities/Merge_Repositories

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

Warning signWarning: As of the November 2020 merges, comm-release will no longer be updated.

comm-beta -> comm-esrXX

Warning signWarning: This is only necessary ONCE per ESR (when a new ESR repository is first created). If you're not sure, you likely want to skip this section.
Warning signWarning: The scripts have not been updated to reflect that comm-release is no longer used. Ideally, automation will be in place before the next ESR is created in July 2021 and it will not be necessary to update them.
  • Modify the ESR variable in resetesrrepos.sh and merge-release-2-esr.sh to point to the current ESR version.
  • Close the relevant trees
  • Reset the repos (this removes any previous repository & creates a fresh clone)
 ./resetesrrepos.sh
  • Run the script
 ./merge-release-2-esr.sh &> release2esr.log
 less release2esr.log
  • Check the log for:
    • Any errors
    • Outgoing tag to comm-beta
    • The diff of changes committed to comm-esr looks OK
    • The outgoing changes to comm-esr look ok, including tagging at the start and end of the list.
    • Note that the number of outgoing changesets and heads might be large (1000s of commits, 100s of heads) because the comm-esrXXX repository is initially created as a clone of ONLY the default branch of comm-beta. When pushing we'll be pushing all the other release branches, etc.
  • Now push the esr changes
 hg -R esr push -f
  • comm-esrXXX can now go to approval-needed.

comm-central -> comm-beta merge

  • Close the relevant trees (comm-central-* and comm-beta-*)
  • Reset the repos (this removes any previous repository & creates a fresh clone)
 ./resetmainrepos.sh
  • Run the script
 ./merge-central-2-beta.sh &> central2beta.log
 less central2beta.log
  • Check the log for:
    • Any errors
    • Outgoing tag to comm-central
    • The diff of changes committed to comm-beta looks OK
      • Updating the TaskCluster config to point to the mozilla-beta
    • The outgoing changes to comm-beta look ok, including closing of the old head, and tagging at the start and end of the list.
  • Now push the central tag (this doesn't cause any builds, as it doesn't change anything)
 hg -R central push
  • do not push beta yet, see the next section about updating .gecko_rev.yml.
  • For comm-central, the version bumps now need to happen:
 ./bump-versions-central.sh &> bumpcentral.log
 less bumpcentral.log
  • Check the log for:
    • Any errors
    • The diff of changes committed to comm-central looks OK
    • The outgoing changes to comm-central look ok, including the changes in version number.
  • Now push central changes
 hg -R central push
  • comm-central can be reset to it's previous status (generally opened)
  • comm-beta doesn't get set back to approval required until after builds are completed

Update comm-beta .gecko_rev.yml

Most of the time this can be done right away. But occasionally there's no BUILD1 tag to pin to yet. You can push to comm-beta without updating .gecko_rev.yml and Taskcluster will use the tip of default. Note that this is the case in the final email update so that whoever is covering tb-releng for that beta knows to update it prior to release promotion.

  • Pin .gecko_rev.yml to the Firefox tag and revision from their first beta build (go to https://hg.mozilla.org/releases/mozilla-beta and look at the tags, it should be something like FIREFOX_77_0b1_BUILD1). Clicking on this will bring you to the revision which also has the revision hash to use.
 GECKO_BASE_REPOSITORY: https://hg.mozilla.org/mozilla-unified
 GECKO_HEAD_REPOSITORY: https://hg.mozilla.org/releases/mozilla-beta
 GECKO_HEAD_REV: eae58b7bc5654f7cac80985dd647c7558bb88895
 GECKO_HEAD_REF: FIREFOX_77_0b1_BUILD2
  • Commit and push that change with CLOSED TREE, e.g.:
 No bug - Pin mozilla-beta (<the ref from above here>). r=me CLOSED TREE

Update Ship It (previously part of release-services, and before that known as ship-it-v1)

Mozilla's Ship It tool must be updated with the updated version number. Ship It is once again its own repository.

As of Thunderbird 83, it looks like the working Shipit development branch has changed from "master" to "main".


shipit changes

  • Modify the api/src/shipit_api/common/config.py file to update the LATEST_THUNDERBIRD_NIGHTLY_VERSION variable to be the newest version of comm-central.
  • Create a pull request with the changes.

An example pull request with the changes (for when comm-central went to 79.0a1) is available to view.

Post-Merge tidy

Please commit and push any changes to the drivertools repo, for history purposes.