File tree Expand file tree Collapse file tree 4 files changed +23
-0
lines changed
docs/reference/transforms Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ The :mod:`taskgraph.transforms.chunking` module contains transforms that aid
77in splitting a single entry in a ``kind `` into multiple tasks. This is often
88used to parallelize expensive or slow work.
99
10+ Schema
11+ ------
12+
13+ All tasks must conform to the :py:data: `chunking schema
14+ <taskgraph.transforms.chunking.CHUNK_SCHEMA> `.
15+
1016Usage
1117-----
1218
Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ These transforms are useful when you want to create follow-up tasks for some
1111indeterminate subset of existing tasks. For example, maybe you want to run
1212a signing task after each build task.
1313
14+ Schema
15+ ------
16+
17+ All tasks must conform to the :py:data: `from_deps schema
18+ <taskgraph.transforms.from_deps.FROM_DEPS_SCHEMA> `.
1419
1520Usage
1621-----
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ task into many subtasks based on a defined matrix.
99These transforms are useful if you need to have many tasks that are very
1010similar except for some small configuration differences.
1111
12+ Schema
13+ ------
14+
15+ All tasks must conform to the :py:data: `matrix schema
16+ <taskgraph.transforms.matrix.MATRIX_SCHEMA> `.
17+
1218Usage
1319-----
1420
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ until ``taskgraph`` runs.
99
1010This data can be provided in a few ways, as described below.
1111
12+ Schema
13+ ------
14+
15+ All tasks must conform to the :py:data: `task_context schema
16+ <taskgraph.transforms.task_context.SCHEMA> `.
17+
1218Usage
1319-----
1420
You can’t perform that action at this time.
0 commit comments