This adds some basic documentation for |mach try| and its various subcommands. This was a bit hastily made for the Austin all-hands, but at least provides a place to link to and can be improved upon in the future. MozReview-Commit-ID: 8N6LZO5kTlL
33 lines
747 B
ReStructuredText
33 lines
747 B
ReStructuredText
Selectors
|
|
=========
|
|
|
|
These are the currently implemented try selectors:
|
|
|
|
* :doc:`fuzzy <fuzzy>`: Select tasks using a fuzzy finding algorithm and
|
|
a terminal interface.
|
|
* :doc:`empty <empty>`: Don't select any tasks. Taskcluster will still run
|
|
some tasks automatically (like lint and python unittest tasks). Further tasks
|
|
can be chosen with treeherder's ``Add New Jobs`` feature.
|
|
* :doc:`syntax <syntax>`: Select tasks using classic try syntax.
|
|
|
|
You can run them with:
|
|
|
|
.. code-block:: shell
|
|
|
|
$ mach try <selector>
|
|
|
|
See selector specific options by running:
|
|
|
|
.. code-block:: shell
|
|
|
|
$ mach try <selector> --help
|
|
|
|
.. toctree::
|
|
:caption: Available Selectors
|
|
:maxdepth: 1
|
|
:hidden:
|
|
|
|
Fuzzy <fuzzy>
|
|
Empty <empty>
|
|
Syntax <syntax>
|