Today marks the 5 year anniversary of try syntax. For the uninitiated, try syntax is a string that
you put into your commit message which a parser then uses to determine the set of builds and
tests to run on your try push. A common try syntax might look like this:
try: -b o -p linux -u mochitest -t none
Since inception, it has been a core part of the Mozilla development workflow.
For many years it has served us well, and even today it serves us passably. But it is almost time
for try syntax to don the wooden overcoat, and this post will explain why.
Read more →I mentioned in my previous post a mercurial extension I wrote for making bookmarks easier to
manipulate. Since then it has undergone a large overhaul, and I believe it is now stable and
intuitive enough to advertise a bit more widely.
Introducing bookbinder
When working with bookmarks (or anonymous heads) I often wanted to operate on the
entire series of commits within the feature I was working on. I often found myself digging out
revision numbers to find the first commit in a bookmark to do things like rebasing, grafting or
diffing. This was annoying. I wanted bookmarks to work more like a git-style branch, that has a
definite start as well as an end. And I wanted to be able to easily refer to the set of commits
contained within. Enter bookbinder.
Read more →This is a continuation of my previous post called The New Mercurial Workflow. It assumes that
you have at least read and experimented with it a bit. If you haven’t, stop right now, read it, get
set up and try playing around with bookmarks and mozreview a bit.
Read more →You may not know that most of our test harnesses are now outputting structured logs (thanks in large
part to :chmanchester’s tireless work). Saying a log is structured simply means that it is in a
machine readable format, in our case each log line is a JSON object. When streamed to a terminal or
treeherder log, these JSON objects are first formatted into something that is human readable, aka
the same log format you’re already familiar with (which is why you may not have noticed this).
Read more →There’s a good chance you’ve heard something about a new review tool coming to Mozilla and how it will change
everything. There’s an even better chance you’ve stumbled across one of gps’ blog posts on how
we use mercurial at Mozilla.
With mozreview entering beta, I decided to throw out my old mq based workflow and
try to use all the latest and greatest tools. That means mercurial bookmarks, a unified
mozilla-central, using mozreview and completely expunging mq from my workflow.
Read more →tl;dr Look for reports like this in the near future!
At Mozilla, platform developers are culturally bound to tbpl. We spend a lot of time staring at
those bright little letters, and their colour can mean the difference between hours, days or even
weeks of work. With so many people performing over 420 pushes per day, all watching,
praying, rejoicing and cursing, it’s paramount that the whole process operates like a well oiled
machine.
Read more →That’s not a rhetorical question. I’d like to know in which scenarios a mixin in python really is
the best option. I can’t seem to think of any, but maybe I’m not thinking outside the box enough.
The basic idea of a mixin is to create a small re-usable class that can “plug-in” to other larger
classes. From the wikipedia definition, a mixin is a way to compose classes together without
using inheritance. The problem is unlike ruby, python mixins are a purely conceptual construct.
Python mixins are inheritance (the only difference is that the class name usually contains
‘Mixin’). It is up to the developer to remember this, and to manually avoid all of the common
pitfalls of multiple inheritance. This kind of defeats the whole purpose of the mixin in the first
place. What’s more is that most people use python mixins improperly.
Read more →My last post was basically a very long winded way of saying, “we have a problem”. It kind of did a
little dance around “why is there a problem” and “how do we fix it”, but I want to explore these two
questions in a bit more detail. Specifically, I want to return to the two case studies and explore
why our test harnesses don’t work and why mozharness does work even though both have IFFY (in flux
for years) requirements. Then I will explore how to use the lessons learned to improve our general
test harness design.
Read more →Dry versus Wet
As programmers, we are taught early on that code duplication is bad and should be avoided at all
cost. It makes code less maintainable, reusable and readable. The DRY principle is very basic
and fundamental to how most of us approach software design. If you aren’t familiar with the DRY
principle, please take a minute to read the wikipedia page on it. The counterpart of DRY, is WET
(write everything twice). In general, I agree that DRY is good and WET is bad. But I think there
are a class of problems where the DRY approach can actually be harmful. For these types of problems,
I will make a claim that a WET approach can actually work better.
Read more →Getting Started
tl;dr - It is possible to add more mach to your B2G repo! To get started, install pip:
$ wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py -O - | python
Install b2g-commands:
$ pip install b2g-commands
To play around with it, cd to your B2G repo and run:
$ git pull # make sure repo is up to date
$ ./mach help # see all available commands
$ ./mach help <command> # see additional info about a command
Details
Most people who spend the majority of their time working within mozilla-central have probably been
acquainted with mach. In case you aren’t acquainted, mach is a generic command dispatching
tool. It is possible to write scripts called ‘mach targets’ which get registered with mach core and
transformed into commands. Mach targets in mozilla-central have access to all sorts of powerful
hooks into the build and test infrastructure which allow them to do some really cool things, such as
bootstrapping your environment, running builds and tests, and generating diagnostics.
Read more →