Bug 1578824 - Land initial boilerplate for embedding RDM UI into the browser. r=mtigl...
[gecko.git] / taskcluster / taskgraph / __init__.py
blob9eac43574d2bb1af26ace6edad7b79902a2e5192
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from __future__ import absolute_import, print_function, unicode_literals
7 import os
9 GECKO = os.path.normpath(os.path.realpath(os.path.join(__file__, '..', '..', '..')))
11 # Maximum number of dependencies a single task can have
12 # https://docs.taskcluster.net/reference/platform/taskcluster-queue/references/api#createTask
13 # specifies 100, but we also optionally add the decision task id as a dep in
14 # taskgraph.create, so let's set this to 99.
15 MAX_DEPENDENCIES = 99
17 # Enable fast task generation for local debugging
18 # This is normally switched on via the --fast/-F flag to `mach taskgraph`
19 # Currently this skips toolchain task optimizations and schema validation
20 fast = False