summaryrefslogtreecommitdiffstats
path: root/comm/taskcluster/comm_taskgraph/__init__.py
blob: cd54612dfba5a8af55e8326d0b82fdfc6edfa367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import logging
import os
from importlib import import_module

from gecko_taskgraph import GECKO
from gecko_taskgraph.optimize.schema import set_optimization_schema  # noqa: F401

from comm_taskgraph.optimize import thunderbird_optimizations

logger = logging.getLogger(__name__)

COMM = os.path.join(GECKO, "comm")
COMM_SCRIPTS = os.path.join(COMM, "taskcluster", "scripts")


def register(graph_config):
    """
    Import all modules that are siblings of this one, triggering decorators in
    the process.
    """
    from comm_taskgraph.parameters import register_parameters

    logger.info("{} path registered".format(__name__))
    register_parameters()

    set_optimization_schema(thunderbird_optimizations)

    _import_modules(
        [
            "documentation",
            "util.docker",
            "actions",
            "target_tasks",
            "transforms.job.toolchain",
        ]
    )


def _import_modules(modules):
    for module in modules:
        import_module(".{}".format(module), package=__name__)