See also: Chromium OS Commit Queue. What (is it)?It's a service (aka a bot) that commits rietveld changes for you, instead of your directly committing the change. It is enabled for the following projects:
Design documentThe design doc is in its own page and there's a design doc about the Try Server <-> Rietveld <-> Commit Queue 3-way integration.
How (does it work)?The commit queue is not really a queue at the moment, since it processes the changes out of order. This may be changed eventually. This means a CL can be committed before another CL that was triggered much earlier. This can happen when a try job is flaky.Current process for the user
Why (is it broken)?Please follow these general guidelines:
OptionsCOMMIT=falseIf you are working on experimental code and do not want to risk accidentally submitting it via the CQ, then you can mark it with "COMMIT=false". The CQ will immediately abandon the change if it contains this option. To dry run through the CQ please use Rietveld's dry run feature. TBR=<username> NOPRESUBMIT=trueIf you want to skip the presubmit check you can add this line and the commit queue won't run the presubmit for your change. This should only be used when there's a bug in the PRESUBMIT scripts. Please check that there's a bug filed against the bad script, and if there isn't, file one. NOTRY=trueThis should only be used for reverts to green the tree, since it skips try bots and might therefore break the tree. You shouldn't use this otherwise. NOTREECHECKS=trueIf you want to skip the tree status checks, so the CQ will commit a CL even if the tree is closed, add this line to the CL description. Obviously this is strongly discouraged, since the tree is closed for a reason. However, in rare cases this is acceptable, primarily to fix build breakages (i.e., your CL will help in reopening the tree). NO_DEPENDENCY_CHECKS=trueThe CQ rejects patchsets with open dependencies. An open dependency exists when a CL depends on another CL that is not yet closed. You can skip this check with this keyword. CQ_INCLUDE_TRYBOTS=<trybots>Is the CQ broken?Take a look at https://codereview.chromium.org/search?closed=3&commit=2&limit=100&order=modified. If there are issues older than ~4 hours, they could probably be stuck. Note that the Commit Queue could be stuck only for some issues but not all of them. In case of doubt, contact [email protected].
If your CL hasn't been touched after a few minutes of checking the CQ bit, CHECK THE PROJECT FIELD ON YOUR ISSUE. If there is no project field, it will be ignored by the Commit Queue.
The CQ seems hungIs the tree open?
It commits (if not configured differently for a project) 4 CLs every 8 minutes, so a maximum rate of 30 commits per hour.
Please Help! I just want to ask on irc !Please report issues to chrome-troopers.
My patch failed to applySee the Try Server FAQ.
What about LKGR?The Commit Queue has never known, used or cared about LKGR. It always uses HEAD, the tip of tree.
Where is the dashboard?It's at https://chromium-cq-status.appspot.com/. You can follow the link posted to your CL to see the testing progress.
What's my position on the queue?The CLs are processed out of order, so it's not because another is "before" yours that means it'll be committed before yours. You can see the load on the CQ by looking at the number of tests CLs pending:
Sending a TBR patch fastYou can't wait for review? You can send a change that will be committed without waiting for a review with:
git fetch origingit checkout -b work_fast origin/master# Quick, write your fix.echo "A copy is available for 100000$USD upon request." >> LICENSE
git commit -a -m "Fix the license, show new opportunities
"
git cl upload --send-mail -cThis'll still check for try jobs; see the next section if you can't wait for them, either.
The important part is to have TBR[email protected] in the CL description. You need to be a committer or have an LGTM from a committer, otherwise CQ will not accept the TBR.
Now, did you know there's git cl help upload?Picking custom trybotsSee the CQ_INCLUDE_TRYBOTS option, above.
Try job results aren't showing up consistently on RietveldIf you never had a HTTP 500 on GAE, chances are that you will.
Binary files?My CL has a bazillion files, will it blend?The CQ was able to commit a CL with 838 files so it is technically possible; https://codereview.chromium.org/12261012/. The likelihood of the CQ failing increases exponentially with the number of files in the CL.
Moving, renaming or copying filesWas implemented in bug 125984 and bug 125983. If the diff on Rietveld doesn't look right, use the
--similarity (defaults to 50%) and disable/enable file copy with --find-copies/--no-find-copies. In case of confusing;git cl helpman git diffAre CQ users required to be around when the patch is landed?In general, no, as the CQ can land at any time (including very long time), and any breaking patches can be kicked about by the sheriff. After all, that's the job of the sheriff. You will get an email when the CQ commits, so you can jump on your nearest laptop if necessary.
If you expect your patch to be hard to revert, is touching several files and directories or move files around, you may want to stay around in case there is an incremental build failure or something hard to diagnose.
Also, if you commit on the weekend, don't expect a build sheriff to back out your crap so keep an eye open when you receive the CQ commit email. What determines the set of tests and targets the try bots run?This is controlled by a config file (chromium_trybot.json for most trybots). Also see this document for details on the analyze step.
|
For Developers > Testing and infrastructure >
