Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

This article needs a technical review. How you can help.

Preparation

There are things you need to be sure of before you even attempt to check in:

  • Your code must compile and pass all the automated tests before you consider pushing changes. If you are at all unsure, verify your changes with the mozilla-central or comm-central try server, as appropriate.
  • You need code review. Depending on the patch, you may also need super-review.
  • Depending on the stage of the development process, you may need approval. Commits to trees where approval is required must have "a=" in the commit message followed by the name of the approver.
  • Code should be factored in such a way such that we can disable features which cause regressions, either by backout or via a kill switch/preference. Be especially careful when landing features which depend on other new features which may be disabled. Ask mozilla.dev.planning for assistance if there are any questions.
  • If your code is likely to break a product other than the one you are focused on (e.g. SeaMonkey or Camino), it's polite to warn them in advance. For instance, you might send a message to mozilla.dev.apps.seamonkey.

Checkin comment

The checkin comment for the change you push should include the bug number, the names of the reviewers, and a clear explanation of the fix. Please say what changes are made, not what problem was fixed, e.g.:

Good: "Bug 123456: Null-check pres shell so we don't crash when a button removes itself during its own onclick handler. r=paul, sr=george, a=ringo."

Bad: "Bug 123456: crash clicking button on www.example.com"

If you are not the author of the code, use hg commit -u to specify the actual author in the Mercurial changeset:

hg commit -u "Pat Chauthor <[email protected]>"

Commit message restrictions

The purpose of these new restrictions, implemented via a mercurial hook, is to prevent commit messages that do not have a bug number. We will still allow a small set of special commits lacking bugs numbers, like merges and backouts.

This hook will be enabled on mozilla-central and every major branch that directly merges into it, such as mozilla-inbound or integration branches, team branches, or established project branches.

An example for a passing commit message would be,

Bug 577872 - Create WebM versions of Ogg reftests. r=kinetik

Note the Bug ####, you at least need that. You also can't commit bustage-fixes without a bug number anymore. This is intentional to keep track of the bug which caused it.

Allowed are:

  • Commit messages containing "bug" or "b=" followed by a bug number
  • Commit messages containing "no bug" (please use this sparingly)
  • Commit message indicating backout of a given 12+ digit changeset ID, starting with (back out|backing out|backed out|backout)( of)? (rev|changeset|cset)s? [0-9a-f]{12}
  • Commit messages that start with "merge" or "merging" and are actually for a merge changeset.

Special exceptions:

  • Commits by the special users "ffxbld", "seabld", "tbirdbld", or "cltbld".
  • When the commit is older then some date shortly after the hook has been enabled, to allow merges from other branches. This exception will be lifted after a short period of time (probably a few months) after the hooks is enabled.
  • You can also specify "IGNORE BAD COMMIT MESSAGES" in the tip (latest) commit message to override all the restrictions. This is an extreme measure, so you should only do this if you have a very good reason.

Explicitly disallowed:

  • Commit messages containing "try: " to avoid unintentional commits that were meant for the try server.

All tests for allowed or excluded messages are case case-insensitive. The hook, commit-message.py, was added in bug 506949.

Check the tree

Buildbot is a continuous build system that builds and tests every change checked into mozilla-central and related source trees. Treeherder displays the progress and results of all the build and test jobs for a given tree. For a particular job, green means all is well, orange means tests have failed, and red means the build itself broke.  Purple means that a test was interrupted, possibly by a problem with the build system or the network.  Blue means that a test was interrupted in a known way and will be automatically restarted.  You can click on the "Help" link in the top right corner of Treeherder for a legend to help you decode all the other colors and letters.

If the tree is green, it is okay to check in. If some builds are orange or red, you can either wait, or make sure all the failures are classified with annotations/comments that reference bug numbers or fixes.

If the tree is marked as "closed", or if you have questions about any oranges or reds, you should contact the sheriff before checking in.

Watch the tree

Once you have checked in, you need to watch the tree and make sure the next cycle for every machine is green. A good rule of thumb is that it will take 1.5 hours to make sure your change compiles correctly on all platforms, 2.5 hours to make sure the unit tests pass, and to make sure the "Talos" performance tests don't crash on your changes. Therefore it is unwise to check in if you won't be available for the next 2-3 hours.

If the tinderbox goes orange or red, you are responsible for figuring out whether you broke it and communicating with the sheriff on IRC.  Patches which cause unit test failures or performance regressions (on tier 1 platforms) should be backed out. Regressions on tier-2 platforms are usually not cause for backout, but you will be expected to help fix them if needed.

Note:  Talos regressions require future data points to ensure a sustained regression and can take anywhere from 3 hours to 30 hours depending on the volume of the tree and build frequency.  Look for a post to mozilla.dev.tree-management (with a corresponding email) within 1-2 days.  All regression alerts do get briefly investigated and bugs are filed if necessary.

Dealing with test failures

If a build or a test job fails, you can click on the red or orange or purple symbol for the job on Treeherder to display more information.  The information will appear in the footer, including a summary of any error messages, a "+" icon to re-trigger the job (schedule it to run again), and links to the log files and to possibly-related bugs.

Here are some steps you can follow to figure out what is causing most failures, and "star" them appropriately:

  1. Click on the failing job to see a list of suggested bugs.  If the failure clearly matches a known bug, click on the star next to that bug and then click "Add a comment" and then submit the comment. This is referred to as "starring the build;" you'll see this phrase or ones like it in IRC a lot.
  2. If the failure might match a known bug but you are not sure, click the bug number to open the Bugzilla report, and click the failing job to open its log.  If the log and the bug do match, add a comment as in step 1 (above).
  3. If the summary does not seem to match any suggested bugs, search Bugzilla for the name of the failing test or the error message.  If you find a matching bug, add a comment in the bug in Bugzilla, and another to the job in Treeherder.
  4. If you can't figure out whether a known bug exists (for example, because you can't figure out what part of the log you should search for), look on Treeherder to see if there are other similar failures nearby, or ask on #developers to see if anyone recognizes it as a known failure.  For example, many Android tests fail frequently in ways that do not produce useful log messages.  You can often find the appropriate bug just by looking at other Android failures that are already starred.
  5. If there is no matching bug, you can back out the change (if you suspect the  failure was caused by your changeset) or re-trigger the job (if you suspect it's an unrelated intermittent failure).  After more test runs it should become clear whether it is a new regression or just an unknown intermittent failure.
  6. If it turns out to be an unknown intermittent failure, file a new bug with "intermittent-failure" in the keywords.  Include the name of the test file and an one-line summary of the log messages in the Summary field.  In the description, include an excerpt of the error messages from the log, and a link to the log file itself.

At any point if you are not sure or can't figure out what to do, ask for advice or help in #developers on IRC. If a large number of jobs are failing and you suspect an infrastructure problem, you can also ask about it in #releng.

Dealing with performance regressions

You can see whether your check-in introduced any regressions on the graph server, or subscribe to the dev.tree-management mailinglist in order to get email notifications of performance changes that our Talos infrastructure measures.

Under some circumstances, if your patch causes a performance regression that is not acceptable, it will get backed out.  Here is a list of current situations where that can happen:

  1. If you regress one of the startup time measurements (Ts Paint, Session Restore) on any desktop or mobile platform more than 4%, your patch will get backed out.
  2. (more to come)

Document Tags and Contributors

 Last updated by: emorley,