# 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/. """
These transformations take a task description and turn it into a TaskCluster
task definition (along with attributes, label, etc.). The input to these
transformations is generic to any kind of task, but abstracts away some of the
complexities of worker implementations, scopes, and treeherder annotations. """
import datetime import functools import hashlib import os import re import time from pathlib import Path from typing import Literal, Optional, Union from urllib.parse import quote
import msgspec import taskgraph from mozilla_taskgraph.util.attributes import release_level from mozilla_taskgraph.util.signed_artifacts import get_signed_artifacts from mozilla_taskgraph.worker_types import get_release_config from taskcluster.utils import fromNow from taskgraph import MAX_DEPENDENCIES from taskgraph.transforms.base import TransformSequence from taskgraph.transforms.task import payload_builder, payload_builders from taskgraph.util.copy import deepcopy from taskgraph.util.keyed_by import evaluate_keyed_by, keymatch from taskgraph.util.schema import (
LegacySchema,
Schema,
optionally_keyed_by,
resolve_keyed_by,
taskref_or_string_msgspec,
validate_schema,
) from taskgraph.util.treeherder import split_symbol
from gecko_taskgraph import GECKO from gecko_taskgraph.optimize.schema import (
OptimizationSchema,
) from gecko_taskgraph.transforms.job.common import get_expiration from gecko_taskgraph.util import docker as dockerutil from gecko_taskgraph.util.attributes import TRUNK_PROJECTS from gecko_taskgraph.util.chunking import TEST_VARIANTS from gecko_taskgraph.util.hash import hash_path from gecko_taskgraph.util.partners import get_partners_to_be_published from gecko_taskgraph.util.scriptworker import BALROG_ACTIONS from gecko_taskgraph.util.workertypes import get_worker_type, worker_type_implementation
@functools.cache def _run_task_suffix(repo_type): """String to append to cache names under control of run-task.""" if repo_type == "hg": return hash_path(str(RUN_TASK_HG))[0:20] return hash_path(str(RUN_TASK_GIT))[0:20]
def _compute_geckoview_version(app_version, moz_build_date): """Geckoview version string that matches geckoview gradle configuration""" # Must be synchronized with /mobile/android/geckoview/build.gradle computeVersionCode(...)
version_without_milestone = re.sub(r"a[0-9]", "", app_version, 1)
parts = version_without_milestone.split(".") return f"{parts[0]}.{parts[1]}.{moz_build_date}"
class TreeherderSchema(Schema, kw_only=True): # either a bare symbol, or "grp(sym)".
symbol: Optional[str] = None # the job kind
kind: Optional[Literal["build", "test", "other"]] = None # tier for this task
tier: Optional[int] = None # task platform, in the form platform/collection, used to set # treeherder.machine.platform and treeherder.collection or # treeherder.labels
platform: Optional[str] = None
class IndexSchema(Schema, kw_only=True): # the name of the product this build produces
product: Optional[str] = None # the names to use for this job in the TaskCluster index
job_name: Optional[str] = None # Type of gecko v2 index to use
type: Literal[ "generic", "l10n", "shippable", "shippable-l10n", "android-shippable", "android-shippable-with-multi-l10n", "shippable-with-multi-l10n",
] = "generic" # The rank that the task will receive in the TaskCluster # index. A newly completed task supercedes the currently # indexed task iff it has a higher rank. If unspecified, # 'by-tier' behavior will be used.
rank: Union[Literal["by-tier", "build_date"], int] = "by-tier"
class TaskWorkerSchema(Schema, forbid_unknown_fields=False, kw_only=True):
implementation: str
class TaskDescriptionSchema(Schema, kw_only=True): # the label for this task
label: str # description of the task (for metadata)
description: str # attributes for this task
attributes: Optional[dict[str, object]] = None # relative path (from config.path) to the file task was defined in
task_from: Optional[str] = None # dependencies of this task, keyed by name; these are passed through # verbatim and subject to the interpretation of the Task's get_dependencies # method.
dependencies: Optional[dict[str, object]] = None # Soft dependencies of this task, as a list of tasks labels
soft_dependencies: Optional[list[str]] = None # Dependencies that must be scheduled in order for this task to run.
if_dependencies: Optional[list[str]] = None
requires: Optional[Literal["all-completed", "all-resolved"]] = None # expiration and deadline times, relative to task creation, with units # (e.g., "14 days"). Defaults are set based on the project.
expires_after: Optional[str] = None
deadline_after: Optional[str] = None
expiration_policy: Optional[str] = None # custom routes for this task; the default treeherder routes will be added # automatically
routes: Optional[list[str]] = None # custom scopes for this task; any scopes required for the worker will be # added automatically. The following parameters will be substituted in each # scope: # {level} -- the scm level of this push # {project} -- the project of this push
scopes: Optional[list[str]] = None # Tags
tags: Optional[dict[str, str]] = None # custom "task.extra" content
extra: Optional[dict[str, object]] = None # treeherder-related information; see # https://firefox-ci-tc.services.mozilla.com/schemas/taskcluster-treeherder/v1/task-treeherder-config.json # If not specified, no treeherder extra information or routes will be # added to the task
treeherder: Optional[TreeherderSchema] = None # information for indexing this build so its artifacts can be discovered; # if omitted, the build will not be indexed.
index: Optional[IndexSchema] = None # The `run_on_repo_type` attribute, defaulting to "hg". This dictates # the types of repositories on which this task should be included in # the target task set. See the attributes documentation for details.
run_on_repo_type: Optional[list[Literal["git", "hg"]]] = None # The `run_on_projects` attribute, defaulting to "all". This dictates the # projects on which this task should be included in the target task set. # See the attributes documentation for details.
run_on_projects: Optional[ # type: ignore
optionally_keyed_by("build-platform", list[str], use_msgspec=True)
] = None # Like `run_on_projects`, `run-on-hg-branches` defaults to "all".
run_on_hg_branches: Optional[ # type: ignore
optionally_keyed_by("project", list[str], use_msgspec=True)
] = None # Specifies git branches for which this task should run.
run_on_git_branches: Optional[list[str]] = None # The `shipping_phase` attribute, defaulting to None. This specifies the # release promotion phase that this task belongs to.
shipping_phase: Optional[Literal["build", "promote", "push", "ship"]] = None # The `shipping_product` attribute, defaulting to None. This specifies the # release promotion product that this task belongs to.
shipping_product: Optional[str] = None # The `always-target` attribute will cause the task to be included in the # target_task_graph regardless of filtering. Tasks included in this manner # will be candidates for optimization even when `optimize_target_tasks` is # False, unless the task was also explicitly chosen by the target_tasks # method.
always_target: bool = False # Optimization to perform on this task during the optimization phase. # Optimizations are defined in taskcluster/gecko_taskgraph/optimize.py.
optimization: Optional[OptimizationSchema] = None # the provisioner-id/worker-type for the task. The following parameters will # be substituted in this string: # {level} -- the scm level of this push
worker_type: Optional[str] = None # Whether the job should use sccache compiler caching.
use_sccache: bool = False # information specific to the worker implementation that will run this task
worker: Optional[TaskWorkerSchema] = None # Override the default priority for the project
priority: Optional[str] = None # Override the default 5 retries
retries: Optional[int] = None
def __post_init__(self):
super().__post_init__() if self.dependencies: for key in self.dependencies: if key in ("self", "decision"): raise ValueError( "Can't use 'self` or 'decision' as depdency names."
)
# {central, inbound, autoland} write to a "trunk" index prefix. This facilitates # walking of tasks with similar configurations.
V2_TRUNK_ROUTE_TEMPLATES = [ "index.{trust-domain}.v2.trunk.revision.{branch_rev}.{product}.{job-name}",
]
V2_SHIPPABLE_TEMPLATES = [ "index.{trust-domain}.v2.{project}{head_ref}.shippable.latest.{product}.{job-name}", "index.{trust-domain}.v2.{project}{head_ref}.shippable.{build_date}.revision.{branch_rev}.{product}.{job-name}", # noqa - too long "index.{trust-domain}.v2.{project}{head_ref}.shippable.{build_date}.latest.{product}.{job-name}", "index.{trust-domain}.v2.{project}{head_ref}.shippable.revision.{branch_rev}.{product}.{job-name}", "index.{trust-domain}.v2.{project}{head_ref}.shippable.revision.{branch_git_rev}.{product}.{job-name}",
]
V2_SHIPPABLE_L10N_TEMPLATES = [ "index.{trust-domain}.v2.{project}{head_ref}.shippable.latest.{product}-l10n.{job-name}.{locale}", "index.{trust-domain}.v2.{project}{head_ref}.shippable.{build_date}.revision.{branch_rev}.{product}-l10n.{job-name}.{locale}", # noqa - too long "index.{trust-domain}.v2.{project}{head_ref}.shippable.{build_date}.latest.{product}-l10n.{job-name}.{locale}", # noqa - too long "index.{trust-domain}.v2.{project}{head_ref}.shippable.revision.{branch_rev}.{product}-l10n.{job-name}.{locale}", # noqa - too long
]
V2_L10N_TEMPLATES = [ "index.{trust-domain}.v2.{project}{head_ref}.revision.{branch_rev}.{product}-l10n.{job-name}.{locale}", "index.{trust-domain}.v2.{project}{head_ref}.pushdate.{build_date_long}.{product}-l10n.{job-name}.{locale}", # noqa - too long "index.{trust-domain}.v2.{project}{head_ref}.pushlog-id.{pushlog_id}.{product}-l10n.{job-name}.{locale}", "index.{trust-domain}.v2.{project}{head_ref}.latest.{product}-l10n.{job-name}.{locale}",
]
# This index is specifically for builds that include geckoview releases, # so we can hard-code the project to "geckoview"
V2_GECKOVIEW_RELEASE = "index.{trust-domain}.v2.{project}{head_ref}.geckoview-version.{geckoview-version}.{product}.{job-name}"# noqa - too long
# the roots of the treeherder routes
TREEHERDER_ROUTE_ROOT = "tc-treeherder"
def get_project_alias(config): if config.params["tasks_for"].startswith("github-pull-request"): return f"{config.params['project']}-pr" return config.params["project"]
def get_head_ref(config) -> tuple[str, Optional[str]]: """
Extract the head_ref without its prefix and determine its type.
Args:
config (TransformConfig): The configuration for the kind being transformed.
Returns:
tuple: A tuple of (head_ref_name, ref_type) where ref_type is'heads', 'tags', orNoneif the type cannot be determined. """ if config.params["repository_type"] == "hg": return"", None
if config.params["tasks_for"].startswith("github-pull-request"): return"", None
head_ref = config.params["head_ref"]
for prefix in ("refs/heads", "refs/tags"): if head_ref.startswith(prefix): return head_ref[len(prefix) + 1 :], prefix.split("/", 1)[-1]
# Unable to determine whether it's a branch or a tag, return None to denote # the type is unknown. # TODO We should probably enforce passing 'head_ref' with a prefix. return head_ref, None
def get_head_ref_index(config) -> str: """Build a URL-encoded index string for the head_ref with namespace prefix.
Args:
config (TransformConfig): The configuration for the kind being transformed.
Returns:
str: The URL-encoded index path (e.g., '.branch.main'or'.tag.v1.0') with appropriate namespace prefix, or empty string if no head_ref. """
head_ref, ref_type = get_head_ref(config) ifnot head_ref: return""
if ref_type == "heads":
index = f".branch.{head_ref}" elif ref_type == "tags":
index = f".tag.{head_ref}" else: # Unsure, just stick it in a 'ref' namespace.
index = f".ref.{head_ref}"
# Ensure head_ref conforms to TC route schema. The `safe` flag ensures '/' # is also quoted. return quote(index, safe="")
def get_treeherder_project(config) -> str: """Resolve and retrieve the Treeherder project name.
Args:
config (TransformConfig): The configuration for the kind being transformed.
class DockerImageDictSchema(Schema, forbid_unknown_fields=True, kw_only=True): # a raw Docker image path (repo/image:tag) is handled by the str branch of the union # an in-tree generated docker image (from `taskcluster/docker/<name>`)
in_tree: Optional[str] = None # an indexed docker image
indexed: Optional[str] = None
def __post_init__(self): if (self.in_tree isNone) == (self.indexed isNone): raise ValueError( "Exactly one of 'in-tree' or 'indexed' must be set in docker-image"
)
class DockerCacheSchema(Schema, forbid_unknown_fields=False, kw_only=True): # only one type is supported by any of the workers right now
type: Literal["persistent"] # name of the cache, allowing re-use by subsequent tasks naming the same cache
name: str # location in the task image where the cache will be mounted
mount_point: str # Whether the cache is not used in untrusted environments (like the Try repo).
skip_untrusted: Optional[bool] = None
class DockerArtifactSchema(Schema, forbid_unknown_fields=False, kw_only=True): # type of artifact -- simple file, or recursive directory
type: Literal["file", "directory"] # task image path from which to read artifact
path: str # name of the produced artifact (root of the names for type=directory)
name: str
expires_after: Optional[str] = None
class DockerWorkerSchema(Schema, forbid_unknown_fields=False, kw_only=True):
os: Literal["linux"] # For tasks that will run in docker-worker, this is the # name of the docker image or in-tree docker image to run the task in. If # in-tree, then a dependency will be created automatically. This is # generally `desktop-test`, or an image that acts an awful lot like it.
docker_image: Union[str, DockerImageDictSchema] # worker features that should be enabled
chain_of_trust: bool
taskcluster_proxy: bool
allow_ptrace: bool
loopback_video: bool
loopback_audio: bool
docker_in_docker: bool # (aka 'dind')
privileged: bool
kvm: Optional[bool] = None # Paths to Docker volumes.
volumes: Optional[list[str]] = None # Paths that are required to be volumes for performance reasons.
required_volumes: Optional[list[str]] = None # caches to set up for the task
caches: Optional[list[DockerCacheSchema]] = None # artifacts to extract from the task image after completion
artifacts: Optional[list[DockerArtifactSchema]] = None # environment variables
env: dict[str, taskref_or_string_msgspec] # the command to run; if not given, docker-worker will default to the # command in the docker image
command: Optional[list[taskref_or_string_msgspec]] = None # the maximum time to run, in seconds
max_run_time: int # the exit status code(s) that indicates the task should be retried
retry_exit_status: Optional[list[int]] = None # the exit status code(s) that indicates the caches used by the task # should be purged
purge_caches_exit_status: Optional[list[int]] = None # Whether any artifacts are assigned to this worker
skip_artifacts: Optional[bool] = None
# Find VOLUME in Dockerfile.
volumes = dockerutil.parse_volumes(name) for v in sorted(volumes): if v in worker["volumes"]: raise Exception( "volume %s already defined; " "if it is defined in a Dockerfile, " "it does not need to be specified in the " "worker definition" % v
)
if worker.get("taskcluster-proxy"):
features["taskclusterProxy"] = True
if worker.get("allow-ptrace"):
features["allowPtrace"] = True
task_def["scopes"].append("docker-worker:feature:allowPtrace")
if worker.get("chain-of-trust"):
features["chainOfTrust"] = True
if worker.get("docker-in-docker"):
features["dind"] = True
# Never enable sccache on the toolchains repo, as there is no benefit from it # because each push uses a different compiler. if task.get("use-sccache") and config.params["project"] != "toolchains":
features["taskclusterProxy"] = True
task_def["scopes"].append( "assume:project:taskcluster:{trust_domain}:level-{level}-sccache-buckets".format(
trust_domain=config.graph_config["trust-domain"],
level=config.params["level"],
)
)
worker["env"]["USE_SCCACHE"] = "1"
worker["env"]["SCCACHE_GCS_PROJECT"] = SCCACHE_GCS_PROJECT # Disable sccache idle shutdown.
worker["env"]["SCCACHE_IDLE_TIMEOUT"] = "0" else:
worker["env"]["SCCACHE_DISABLE"] = "1"
capabilities = {}
for lo in"audio", "video": if worker.get("loopback-" + lo):
capitalized = "loopback" + lo.capitalize()
devices = capabilities.setdefault("devices", {})
devices[capitalized] = True
task_def["scopes"].append("docker-worker:capability:device:" + capitalized)
if worker.get("kvm"):
devices = capabilities.setdefault("devices", {})
devices["kvm"] = True
task_def["scopes"].append("docker-worker:capability:device:kvm")
if worker.get("privileged"):
capabilities["privileged"] = True
task_def["scopes"].append("docker-worker:capability:privileged")
# run-task exits EXIT_PURGE_CACHES if there is a problem with caches. # Automatically retry the tasks and purge caches if we see this exit # code. # TODO move this closer to code adding run-task once bug 1469697 is # addressed. if run_task:
worker.setdefault("retry-exit-status", []).append(72)
worker.setdefault("purge-caches-exit-status", []).append(72)
# run-task knows how to validate caches. # # To help ensure new run-task features and bug fixes don't interfere # with existing caches, we seed the hash of run-task into cache names. # So, any time run-task changes, we should get a fresh set of caches. # This means run-task can make changes to cache interaction at any time # without regards for backwards or future compatibility. # # But this mechanism only works for in-tree Docker images that are built # with the current run-task! For out-of-tree Docker images, we have no # way of knowing their content of run-task. So, in addition to varying # cache names by the contents of run-task, we also take the Docker image # name into consideration. This means that different Docker images will # never share the same cache. This is a bit unfortunate. But it is the # safest thing to do. Fortunately, most images are defined in-tree. # # For out-of-tree Docker images, we don't strictly need to incorporate # the run-task content into the cache name. However, doing so preserves # the mechanism whereby changing run-task results in new caches # everywhere.
# As an additional mechanism to force the use of different caches, the # string literal in the variable below can be changed. This is # preferred to changing run-task because it doesn't require images # to be rebuilt.
cache_version = "v3"
if run_task:
suffix = (
f"{cache_version}-{_run_task_suffix(config.params['repository_type'])}"
)
if out_of_tree_image:
name_hash = hashlib.sha256(
out_of_tree_image.encode("utf-8")
).hexdigest()
suffix += name_hash[0:12]
else:
suffix = cache_version
for cache in worker["caches"]: # Some caches aren't enabled in environments where we can't # guarantee certain behavior. Filter those out. if cache.get("skip-untrusted") and level == 1: continue
name = "{trust_domain}-level-{level}-{name}-{suffix}".format(
trust_domain=config.graph_config["trust-domain"],
level=config.params["level"],
name=cache["name"],
suffix=suffix,
)
# Assertion: only run-task is interested in this. if run_task:
payload["env"]["TASKCLUSTER_CACHES"] = ";".join(sorted(caches.values()))
payload["cache"] = caches
# And send down volumes information to run-task as well. if run_task and worker.get("volumes"):
payload["env"]["TASKCLUSTER_VOLUMES"] = ";".join(sorted(worker["volumes"]))
if payload.get("cache") and level == 1:
payload["env"]["TASKCLUSTER_UNTRUSTED_CACHES"] = "1"
if features:
payload["features"] = features if capabilities:
payload["capabilities"] = capabilities
class GenericArtifactSchema(Schema, forbid_unknown_fields=False, kw_only=True): # type of artifact -- simple file, or recursive directory
type: Literal["file", "directory"] # filesystem path from which to read artifact
path: str # if not specified, path is used for artifact name
name: Optional[str] = None
expires_after: Optional[str] = None
class GenericMountContentSchema(Schema, forbid_unknown_fields=False, kw_only=True): # Artifact name that contains the content.
artifact: Optional[str] = None # Task ID that has the artifact that contains the content.
task_id: Optional[taskref_or_string_msgspec] = None # URL that supplies the content in response to an unauthenticated GET request.
url: Optional[str] = None
class GenericMountSchema(Schema, forbid_unknown_fields=False, kw_only=True): # A unique name for the cache volume, implies writable cache directory.
cache_name: Optional[str] = None # Optional content for pre-loading cache, or mandatory content for read-only file/dir.
content: Optional[GenericMountContentSchema] = None # Filesystem location of the directory as a relative path to the task directory.
directory: Optional[str] = None # Relative path within the task directory to mount the file (read only).
file: Optional[str] = None # Archive format of the content if mounting a directory.
format: Optional[Literal["rar", "tar.bz2", "tar.gz", "zip", "tar.xz"]] = None
class GenericWorkerSchema(Schema, forbid_unknown_fields=False, kw_only=True):
os: Literal["windows", "macosx", "linux", "linux-bitbar", "linux-lambda"] # command is a list of commands to run, sequentially # on Windows, each command is a string, on OS X and Linux, each command is a string array
command: list[Union[taskref_or_string_msgspec, list[taskref_or_string_msgspec]]] # artifacts to extract from the task image after completion
artifacts: Optional[list[GenericArtifactSchema]] = None # Directories and/or files to be mounted.
mounts: Optional[list[GenericMountSchema]] = None # environment variables
env: dict[str, taskref_or_string_msgspec] # the maximum time to run, in seconds
max_run_time: int # os user groups for test task workers
os_groups: Optional[list[str]] = None # feature for test task to run as administrator
run_as_administrator: Optional[bool] = None # optional features
chain_of_trust: bool
taskcluster_proxy: Optional[bool] = None
hide_cmd_window: Optional[bool] = None # the exit status code(s) that indicates the task should be retried
retry_exit_status: Optional[list[int]] = None # Whether any artifacts are assigned to this worker
skip_artifacts: Optional[bool] = None
if worker["os"] == "windows":
task_def["payload"]["onExitStatus"] = { "retry": [ # These codes (on windows) indicate a process interruption, # rather than a task run failure. See bug 1544403. 1073807364, # process force-killed due to system shutdown 3221225786, # sigint (any interrupt)
]
} if"retry-exit-status"in worker:
task_def["payload"].setdefault("onExitStatus", {}).setdefault( "retry", []
).extend(worker["retry-exit-status"]) if worker["os"] in ["linux-bitbar", "linux-lambda"]:
task_def["payload"].setdefault("onExitStatus", {}).setdefault("retry", []) # exit code 4 is used to indicate an intermittent android device error if4notin task_def["payload"]["onExitStatus"]["retry"]:
task_def["payload"]["onExitStatus"]["retry"].extend([4])
env = worker.get("env", {})
# Never enable sccache on the toolchains repo, as there is no benefit from it # because each push uses a different compiler. if task.get("use-sccache") and config.params["project"] != "toolchains":
features["taskclusterProxy"] = True
task_def["scopes"].append( "assume:project:taskcluster:{trust_domain}:level-{level}-sccache-buckets".format(
trust_domain=config.graph_config["trust-domain"],
level=config.params["level"],
)
)
env["USE_SCCACHE"] = "1"
worker["env"]["SCCACHE_GCS_PROJECT"] = SCCACHE_GCS_PROJECT # Disable sccache idle shutdown.
env["SCCACHE_IDLE_TIMEOUT"] = "0" else:
env["SCCACHE_DISABLE"] = "1"
if env:
task_def["payload"]["env"] = env
artifacts = []
for artifact in worker.get("artifacts", []):
a = { "path": artifact["path"], "type": artifact["type"], "expires": {"relative-datestamp": artifact["expires-after"]},
} if"name"in artifact:
a["name"] = artifact["name"]
artifacts.append(a)
if artifacts:
task_def["payload"]["artifacts"] = artifacts
# Need to copy over mounts, but rename keys to respect naming convention # * 'cache-name' -> 'cacheName' # * 'task-id' -> 'taskId' # All other key names are already suitable, and don't need renaming.
mounts = deepcopy(worker.get("mounts", [])) for mount in mounts: if"cache-name"in mount:
mount["cacheName"] = "{trust_domain}-level-{level}-{name}".format(
trust_domain=config.graph_config["trust-domain"],
level=config.params["level"],
name=mount.pop("cache-name"),
)
task_def["scopes"].append( "generic-worker:cache:{}".format(mount["cacheName"])
) if"content"in mount: if"task-id"in mount["content"]:
mount["content"]["taskId"] = mount["content"].pop("task-id") if"artifact"in mount["content"]: ifnot mount["content"]["artifact"].startswith("public/"):
task_def["scopes"].append( "queue:get-artifact:{}".format(mount["content"]["artifact"])
)
if mounts:
task_def["payload"]["mounts"] = mounts
if worker.get("os-groups"):
task_def["payload"]["osGroups"] = worker["os-groups"]
task_def["scopes"].extend([ "generic-worker:os-group:{}/{}".format(task["worker-type"], group) for group in worker["os-groups"]
])
if worker.get("chain-of-trust"):
features["chainOfTrust"] = True
if worker.get("taskcluster-proxy"):
features["taskclusterProxy"] = True
if worker.get("run-as-administrator", False):
features["runAsAdministrator"] = True
task_def["scopes"].append( "generic-worker:run-as-administrator:{}".format(task["worker-type"]),
)
if worker.get("hide-cmd-window"):
features["hideCmdWindow"] = True
if features:
task_def["payload"]["features"] = features
class IscriptArtifactSchema(
msgspec.Struct, kw_only=True, rename="camel", forbid_unknown_fields=True
): # taskId of the task with the artifact
task_id: taskref_or_string_msgspec # type of signing task (for CoT)
task_type: str # Paths to the artifacts to sign
paths: list[str] # Signing formats to use on each of the paths
formats: list[str]
single_file_globs: Optional[list[str]] = None
class IscriptSchema(Schema, forbid_unknown_fields=False, kw_only=True):
signing_type: str # the maximum time to run, in seconds
max_run_time: int # list of artifact URLs for the artifacts that should be signed
upstream_artifacts: list[IscriptArtifactSchema] # behavior for mac iscript
mac_behavior: Optional[
Literal[ "apple_notarization", "apple_notarization_stacked", "mac_sign_and_pkg", "mac_sign_pkg", "mac_sign_and_pkg_hardened", "mac_geckodriver", "mac_notarize_geckodriver", "mac_single_file", "mac_notarize_single_file",
]
] = None
entitlements_url: Optional[str] = None
requirements_plist_url: Optional[str] = None
provisioning_profile_config: Optional[list[IscriptProvisioningProfileSchema]] = None
hardened_sign_config: Optional[list[IscriptHardenedSignConfigSchema]] = None
class BeetmoverArtifactSchema(
msgspec.Struct, kw_only=True, rename="camel", forbid_unknown_fields=True
): # taskId of the task with the artifact
task_id: taskref_or_string_msgspec # type of signing task (for CoT)
task_type: str # Paths to the artifacts to sign
paths: list[str] # locale is used to map upload path and allow for duplicate simple names
locale: str
class BeetmoverSchema(Schema, forbid_unknown_fields=False, kw_only=True): # the maximum time to run, in seconds
max_run_time: Optional[int] = None # locale key, if this is a locale beetmover job
locale: Optional[str] = None
release_properties: BeetmoverReleasePropertiesSchema # list of artifact URLs for the artifacts that should be beetmoved
upstream_artifacts: list[BeetmoverArtifactSchema]
artifact_map: Optional[object] = None
class BeetmoverPushToReleaseSchema(Schema, forbid_unknown_fields=False, kw_only=True): # the maximum time to run, in seconds
max_run_time: Optional[int] = None
product: str
def __post_init__(self):
super().__post_init__() if self.balrog_action notin BALROG_ACTIONS: raise ValueError(
f"Invalid balrog-action {self.balrog_action!r}; "
f"must be one of {list(BALROG_ACTIONS)}"
)
if worker.get("l10n-bump-info"):
l10n_bump_info = []
l10n_repo_urls = set() for lbi in worker["l10n-bump-info"]:
new_lbi = {} if"l10n-repo-url"in lbi:
l10n_repo_urls.add(lbi["l10n-repo-url"]) for k, v in lbi.items():
new_lbi[k.replace("-", "_")] = v
l10n_bump_info.append(new_lbi)
task_def["payload"]["l10n_bump_info"] = l10n_bump_info if len(l10n_repo_urls) > 1: raise Exception( "Must use the same l10n-repo-url for all files in the same task!"
) elif len(l10n_repo_urls) == 1: if"github.com"in l10n_repo_urls.pop():
actions.append("l10n_bump_github") else:
actions.append("l10n_bump")
if worker.get("merge-info"):
merge_info = {
merge_param_name.replace("-", "_"): merge_param_value for merge_param_name, merge_param_value in worker["merge-info"].items() if merge_param_name != "version-files"
}
merge_info["version_files"] = [
{
file_param_name.replace("-", "_"): file_param_value for file_param_name, file_param_value in file_entry.items()
} for file_entry in worker["merge-info"]["version-files"]
]
task_def["payload"]["merge_info"] = merge_info
actions.append("merge_day")
if worker.get("android-l10n-import-info"):
android_l10n_import_info = {} for k, v in worker["android-l10n-import-info"].items():
android_l10n_import_info[k.replace("-", "_")] = worker[ "android-l10n-import-info"
][k]
android_l10n_import_info["toml_info"] = [
{
param_name.replace("-", "_"): param_value for param_name, param_value in entry.items()
} for entry in worker["android-l10n-import-info"]["toml-info"]
]
task_def["payload"]["android_l10n_import_info"] = android_l10n_import_info
actions.append("android_l10n_import")
if worker.get("android-l10n-sync-info"):
android_l10n_sync_info = {} for k, v in worker["android-l10n-sync-info"].items():
android_l10n_sync_info[k.replace("-", "_")] = worker[ "android-l10n-sync-info"
][k]
android_l10n_sync_info["toml_info"] = [
{
param_name.replace("-", "_"): param_value for param_name, param_value in entry.items()
} for entry in worker["android-l10n-sync-info"]["toml-info"]
]
task_def["payload"]["android_l10n_sync_info"] = android_l10n_sync_info
actions.append("android_l10n_sync")
if worker["push"]:
actions.append("push")
if worker.get("force-dry-run"):
task_def["payload"]["dry_run"] = True
if worker.get("dontbuild"):
task_def["payload"]["dontbuild"] = True
if worker.get("ignore-closed-tree") isnotNone:
task_def["payload"]["ignore_closed_tree"] = worker["ignore-closed-tree"]
if worker.get("source-repo"):
task_def["payload"]["source_repo"] = worker["source-repo"]
if worker.get("ssh-user"):
task_def["payload"]["ssh_user"] = worker["ssh-user"]
# -- scriptworker-lando schemas --
class TomlInfoSync(Schema):
toml_path: str
class AndroidL10nSyncConfig(Schema):
from_branch: str
toml_info: list[TomlInfoSync]
class TomlInfoImport(Schema):
toml_path: str
dest_path: str
class AndroidL10nImportConfig(Schema):
from_repo_url: str
toml_info: list[TomlInfoImport]
class PlatformConfig(Schema):
platforms: list[str]
path: str
format: Optional[str] = None
# the remaining action types all end up using the "merge_day" # landoscript action. however, these are quite varied tasks, # and separating them out allows us to have stronger schemas.
class EarlyToLateBetaConfig(Schema):
to_branch: str # technically not used, but passing it keeps landoscript # code cleaner, so we may as well require a real value # for it.
fetch_version_from: str
to_revision: str = ""
replacements: Optional[list[list[str]]] = None
if worker.get("ignore-closed-tree") isnotNone:
task_def["payload"]["ignore_closed_tree"] = worker["ignore-closed-tree"]
if worker.get("dontbuild"):
task_def["payload"]["dontbuild"] = True
if worker.get("force-dry-run"):
task_def["payload"]["dry_run"] = True
for action in worker["actions"]: if info := action.get("android-l10n-import"):
android_l10n_import_info = dash_to_underscore(info)
android_l10n_import_info["toml_info"] = [
dash_to_underscore(ti) for ti in android_l10n_import_info["toml_info"]
]
task_def["payload"]["android_l10n_import_info"] = android_l10n_import_info
actions.append("android_l10n_import")
if info := action.get("android-l10n-sync"):
android_l10n_sync_info = dash_to_underscore(info)
android_l10n_sync_info["toml_info"] = [
dash_to_underscore(ti) for ti in android_l10n_sync_info["toml_info"]
]
task_def["payload"]["android_l10n_sync_info"] = android_l10n_sync_info
actions.append("android_l10n_sync")
if info := action.get("l10n-bump"):
task_def["payload"]["l10n_bump_info"] = process_l10n_bump_info(info)
actions.append("l10n_bump")
if info := action.get("version-bump"):
bump_info = {}
bump_info["next_version"] = release_config["next_version"]
bump_info["files"] = info["bump-files"]
task_def["payload"]["version_bump_info"] = bump_info
actions.append("version_bump")
if info := action.get("esr-bump"):
merge_info = dash_to_underscore(info)
merge_info["version_files"] = [
dash_to_underscore(vf) for vf in info["version-files"]
]
task_def["payload"]["merge_info"] = merge_info
actions.append("merge_day")
if info := action.get("main-bump"):
merge_info = dash_to_underscore(info)
merge_info["version_files"] = [
dash_to_underscore(vf) for vf in info["version-files"]
]
task_def["payload"]["merge_info"] = merge_info
actions.append("merge_day")
if info := action.get("early-to-late-beta"):
task_def["payload"]["merge_info"] = dash_to_underscore(info)
actions.append("merge_day")
if info := action.get("uplift"):
merge_info = dash_to_underscore(info)
merge_info["merge_old_head"] = True
merge_info["version_files"] = [
dash_to_underscore(vf) for vf in info["version-files"]
] if lbi := info.get("l10n-bump-info"):
merge_info["l10n_bump_info"] = process_l10n_bump_info(lbi)
if info := action.get("merge-day"):
merge_info = dash_to_underscore(info) if version_files := info.get("version-files"):
merge_info["version_files"] = [
dash_to_underscore(vf) for vf in version_files
]
task_def["payload"]["merge_info"] = merge_info
actions.append("merge_day")
scopes = set(task_def.get("scopes", []))
scopes.add(f"project:releng:lando:repo:{worker['lando-repo']}")
scopes.update([f"project:releng:lando:action:{action}"for action in actions])
for matrix_room in worker.get("matrix-rooms", []):
task_def.setdefault("routes", [])
task_def["routes"].append(f"notify.matrix-room.{matrix_room}.on-pending")
task_def["routes"].append(f"notify.matrix-room.{matrix_room}.on-resolved")
scopes.add("queue:route:notify.matrix-room.*")
task_def["scopes"] = sorted(scopes)
def process_l10n_bump_info(info):
l10n_bump_info = []
l10n_repo_urls = set() for lbi in info:
l10n_repo_urls.add(lbi["l10n-repo-url"])
l10n_bump_info.append(dash_to_underscore(lbi))
if len(l10n_repo_urls) > 1: raise Exception( "Must use the same l10n-repo-url for all files in the same task!"
)
return l10n_bump_info
def dash_to_underscore(obj):
new_obj = {} for k, v in obj.items():
new_obj[k.replace("-", "_")] = v return new_obj
# -- transforms --
transforms = TransformSequence()
@transforms.add def set_implementation(config, tasks): """
Set the worker implementation based on the worker-type alias. """ for task in tasks:
default_worker_implementation, default_os = worker_type_implementation(
config.graph_config, config.params, task["worker-type"]
)
os = worker.get("os", default_os) if os:
tags["os"] = os
worker["os"] = os
yield task
def _get_worker_implementation_tag(config, task_worker_type, worker_implementation): # Scriptworkers have different types of payload and each sets its own # worker-implementation. Per bug 1955941, we want to bundle them all in one category # through their tags.
provisioner_id, _ = get_worker_type(
config.graph_config,
config.params,
task_worker_type,
) if provisioner_id in ("scriptworker-k8s", "scriptworker-prov-v1"): return"scriptworker"
return worker_implementation
@transforms.add def set_defaults(config, tasks): for task in tasks:
task.setdefault("shipping-phase", None)
task.setdefault("shipping-product", None)
task.setdefault("always-target", False)
task.setdefault("optimization", None)
task.setdefault("use-sccache", False)
worker = task["worker"] if worker["implementation"] in ("docker-worker",):
worker.setdefault("chain-of-trust", False)
worker.setdefault("taskcluster-proxy", False)
worker.setdefault("allow-ptrace", True)
worker.setdefault("loopback-video", False)
worker.setdefault("loopback-audio", False)
worker.setdefault("docker-in-docker", False)
worker.setdefault("privileged", False)
worker.setdefault("volumes", [])
worker.setdefault("env", {}) if"caches"in worker: for c in worker["caches"]:
c.setdefault("skip-untrusted", False) elif worker["implementation"] == "generic-worker":
worker.setdefault("env", {})
worker.setdefault("os-groups", []) if worker["os-groups"] and worker["os"] notin ( "windows", "linux",
): raise Exception( "os-groups feature of generic-worker is only supported on " "Windows and Linux, not on {}".format(worker["os"])
)
worker.setdefault("chain-of-trust", False) elif worker["implementation"] in ("iscript",):
worker.setdefault("max-run-time", 600) elif worker["implementation"] == "push-apk":
worker.setdefault("commit", False)
yield task
@transforms.add def setup_raptor(config, tasks): """Add options that are specific to raptor jobs (identified by suite=raptor).
This variant uses a separate set of transforms for manipulating the tests at the
task-level. Currently only used for setting the taskcluster proxy setting and
the scopes required for perftest secrets. """ from gecko_taskgraph.transforms.test.raptor import (
task_transforms as raptor_transforms,
)
for task in tasks: if task.get("extra", {}).get("suite", "") != "raptor": yield task continue
yieldfrom raptor_transforms(config, [task])
@transforms.add def task_name_from_label(config, tasks): for task in tasks:
taskname = task.pop("name", None) if"label"notin task: if taskname isNone: raise Exception("task has neither a name nor a label")
task["label"] = f"{config.kind}-{taskname}" yield task
UNSUPPORTED_SHIPPING_PRODUCT_ERROR = """\
The shipping product {product} isnotin the list of configured products in
`taskcluster/config.yml'. """
def validate_shipping_product(config, product): if product notin config.graph_config["release-promotion"]["products"]: raise Exception(UNSUPPORTED_SHIPPING_PRODUCT_ERROR.format(product=product))
@transforms.add def validate(config, tasks): for task in tasks:
validate_schema(
TaskDescriptionSchema,
task, "In task {!r}:".format(task.get("label", "?no-label?")),
)
worker_schema = payload_builders[task["worker"]["implementation"]].schema if isinstance(worker_schema, dict): from voluptuous import ALLOW_EXTRA
for tpl in V2_ROUTE_TEMPLATES: try:
routes.append(tpl.format(**subs)) except KeyError: # Ignore errors that arise from branch_git_rev not being set. pass
# Additionally alias all tasks for "trunk" repos into a common # namespace. if project and project in TRUNK_PROJECTS: for tpl in V2_TRUNK_ROUTE_TEMPLATES:
routes.append(tpl.format(**subs))
for tpl in V2_SHIPPABLE_TEMPLATES: try:
routes.append(tpl.format(**subs)) except KeyError: # Ignore errors that arise from branch_git_rev not being set. pass
# Also add routes for en-US
task = add_shippable_l10n_index_routes(config, task, force_locale="en-US")
locales = task["attributes"].get( "chunk_locales", task["attributes"].get("all_locales")
) # Some tasks has only one locale set if task["attributes"].get("locale"):
locales = [task["attributes"]["locale"]]
if force_locale: # Used for en-US and multi-locale
locales = [force_locale]
ifnot locales: raise Exception("Error: Unable to use l10n index for tasks without locales")
# If there are too many locales, we can't write a route for all of them # See Bug 1323792 if len(locales) > 18: # 18 * 3 = 54, max routes = 64 return task
for locale in locales: for tpl in V2_L10N_TEMPLATES:
routes.append(tpl.format(locale=locale, **subs))
locales = task["attributes"].get( "chunk_locales", task["attributes"].get("all_locales")
) # Some tasks has only one locale set if task["attributes"].get("locale"):
locales = [task["attributes"]["locale"]]
if force_locale: # Used for en-US and multi-locale
locales = [force_locale]
ifnot locales: raise Exception("Error: Unable to use l10n index for tasks without locales")
# If there are too many locales, we can't write a route for all of them # See Bug 1323792 if len(locales) > 18: # 18 * 3 = 54, max routes = 64 return task
for locale in locales: for tpl in V2_SHIPPABLE_L10N_TEMPLATES:
routes.append(tpl.format(locale=locale, **subs))
@transforms.add def add_index_routes(config, tasks): for task in tasks:
index = task.get("index", {})
# The default behavior is to rank tasks according to their tier
extra_index = task.setdefault("extra", {}).setdefault("index", {})
rank = index.get("rank", "by-tier")
if rank == "by-tier": # rank is one for non-tier-1 tasks and based on pushid for others; # this sorts tier-{2,3} builds below tier-1 in the index, but above # eager-index
tier = task.get("treeherder", {}).get("tier", 3)
extra_index["rank"] = 1if tier > 1else int(config.params["build_date"]) elif rank == "build_date":
extra_index["rank"] = int(config.params["build_date"]) else:
extra_index["rank"] = rank
@transforms.add def add_github_checks_route(config, tasks): """Add the Github 'checks' route to code review tasks.""" if config.params["repository_type"] != "git": yieldfrom tasks return
for task in tasks: if task.get("attributes", {}).get("code-review"):
routes = task.setdefault("routes", [])
tier = task.get("treeherder", {}).get("tier", 3) if"checks"notin routes and tier == 1:
routes.append("checks")
yield task
@transforms.add def try_task_config_env(config, tasks): """Set environment variables in the task."""
env = config.params["try_task_config"].get("env") ifnot env: yieldfrom tasks return
# Find all implementations that have an 'env' key.
implementations = {
name for name, builder in payload_builders.items() if isinstance(builder.schema, type) and issubclass(builder.schema, msgspec.Struct) and any(f.name == "env"for f in msgspec.structs.fields(builder.schema))
} for task in tasks: if task["worker"]["implementation"] in implementations:
task["worker"]["env"].update(env) yield task
@transforms.add def try_task_config_priority(config, tasks): """Change priority based on the try_task_config."""
priority = config.params["try_task_config"].get("priority") ifnot priority: yieldfrom tasks return
for task in tasks:
task["priority"] = priority yield task
@transforms.add def try_task_config_routes(config, tasks): """Set routes in the task."""
routes = config.params["try_task_config"].get("routes") for task in tasks: if routes:
task_routes = task.setdefault("routes", [])
task_routes.extend(routes) yield task
@transforms.add def set_task_and_artifact_expiry(config, jobs): """Set the default expiry for tasks and their artifacts.
These values are read from ci/config.yml """
now = datetime.datetime.utcnow() # We don't want any configuration leading to anything with an expiry longer # than 28 days on try.
cap = "28 days"if config.params["level"] == "1"elseNone
cap_from_now = fromNow(cap, now) if cap elseNone for job in jobs:
expires = get_expiration(config, job.get("expiration-policy", "default"))
job_expiry = job.setdefault("expires-after", expires)
job_expiry_from_now = fromNow(job_expiry, now) if cap and job_expiry_from_now > cap_from_now:
job_expiry, job_expiry_from_now = cap, cap_from_now # If the task has no explicit expiration-policy, but has an expires-after, # we use that as the default artifact expiry.
artifact_expires = expires if"expiration-policy"in job else job_expiry
for artifact in job["worker"].get("artifacts", ()):
artifact_expiry = artifact.setdefault("expires-after", artifact_expires)
# By using > instead of >=, there's a chance of mismatch # where the artifact expires sooner than the task. # There is no chance, however, of mismatch where artifacts # expire _after_ the task. # Currently this leads to some build tasks having logs # that expire in 1 year while the task expires in 3 years. if fromNow(artifact_expiry, now) > job_expiry_from_now:
artifact["expires-after"] = job_expiry
yield job
def group_name_variant(group_names, groupSymbol): # iterate through variants, allow for Base-[variant_list] # sorting longest->shortest allows for finding variants when # other variants have a suffix that is a subset
variant_symbols = sorted(
[
(
v,
TEST_VARIANTS[v]["suffix"],
TEST_VARIANTS[v].get("description", "{description}"),
) for v in TEST_VARIANTS if TEST_VARIANTS[v].get("suffix", "")
],
key=lambda tup: len(tup[1]),
reverse=True,
)
# strip known variants # build a list of known variants
base_symbol = groupSymbol
found_variants = [] for variant, suffix, description in variant_symbols: if f"-{suffix}"in base_symbol:
base_symbol = base_symbol.replace(f"-{suffix}", "")
found_variants.append((variant, description))
if base_symbol notin group_names: return""
description = group_names[base_symbol] for variant, desc in found_variants:
description = desc.format(description=description)
return description
@transforms.add def build_task(config, tasks): for task in tasks:
level = str(config.params["level"])
routes = task.get("routes", [])
scopes = [
s.format(level=level, project=project) for s in task.get("scopes", [])
]
# set up extra
extra = task.get("extra", {})
extra["parent"] = {"task-reference": "<decision>"}
task_th = task.get("treeherder") if task_th:
extra.setdefault("treeherder-platform", task_th["platform"])
treeherder = extra.setdefault("treeherder", {})
if task.get("requires", None):
task_def["requires"] = task["requires"] if task.get("retries") isnotNone:
task_def["retries"] = task["retries"]
if task_th: # link back to treeherder in description
th_job_link = get_treeherder_link(config)
task_def["metadata"]["description"] = { "task-reference": "{description} ([Treeherder job]({th_job_link}))".format(
description=task_def["metadata"]["description"],
th_job_link=th_job_link,
)
}
# add the payload and adjust anything else as required (e.g., scopes)
payload_builders[task["worker"]["implementation"]].builder(
config, task, task_def
)
# We don't want to pollute non git repos with this attribute. Moreover, target_tasks # already assumes the default value is ['all'] if task.get("run-on-git-branches"):
attributes["run_on_git_branches"] = task["run-on-git-branches"]
attributes["always_target"] = task["always-target"] # This logic is here since downstream tasks don't always match their # upstream dependency's shipping_phase. # A text_type task['shipping-phase'] takes precedence, then # an existing attributes['shipping_phase'], then fall back to None. if task.get("shipping-phase") isnotNone:
attributes["shipping_phase"] = task["shipping-phase"] else:
attributes.setdefault("shipping_phase", None) # shipping_product will always match the upstream task's # shipping_product, so a pre-set existing attributes['shipping_product'] # takes precedence over task['shipping-product']. However, make sure # we don't have conflicting values. if task.get("shipping-product") and attributes.get("shipping_product") notin ( None,
task["shipping-product"],
): raise Exception( "{} shipping_product {} doesn't match task shipping-product {}!".format(
task["label"],
attributes["shipping_product"],
task["shipping-product"],
)
)
attributes.setdefault("shipping_product", task["shipping-product"])
# Set some MOZ_* settings on all jobs. if task["worker"]["implementation"] in ( "generic-worker", "docker-worker",
):
payload = task_def.get("payload") if payload:
env = payload.setdefault("env", {})
env.update({ "MOZ_AUTOMATION": "1", "MOZ_BUILD_DATE": config.params["moz_build_date"], "MOZ_SCM_LEVEL": config.params["level"], "MOZ_SOURCE_CHANGESET": get_branch_rev(config), "MOZ_SOURCE_REPO": get_branch_repo(config),
})
dependencies = task.get("dependencies", {})
if_dependencies = task.get("if-dependencies", []) if if_dependencies: for i, dep in enumerate(if_dependencies): if dep in dependencies:
if_dependencies[i] = dependencies[dep] continue
raise Exception( "{label} specifies '{dep}' in if-dependencies, " "but {dep} is not a dependency!".format(
label=task["label"], dep=dep
)
)
@transforms.add def chain_of_trust(config, tasks): for task in tasks: if task["task"].get("payload", {}).get("features", {}).get("chainOfTrust"):
image = task.get("dependencies", {}).get("docker-image") if image:
cot = (
task["task"].setdefault("extra", {}).setdefault("chainOfTrust", {})
)
cot.setdefault("inputs", {})["docker-image"] = { "task-reference": "<docker-image>"
} yield task
@transforms.add def check_task_identifiers(config, tasks): """Ensures that all tasks have well defined identifiers:
``^[a-zA-Z0-9_-]{1,38}$`` """
e = re.compile("^[a-zA-Z0-9_-]{1,38}$") for task in tasks: for attrib in ("workerType", "provisionerId"): ifnot e.match(task["task"][attrib]): raise Exception( "task {}.{} is not a valid identifier: {}".format(
task["label"], attrib, task["task"][attrib]
)
) yield task
@transforms.add def check_task_dependencies(config, tasks): """Ensures that tasks don't have more than 100 dependencies.""" for task in tasks: if len(task["dependencies"]) > MAX_DEPENDENCIES: raise Exception( "task {}/{} has too many dependencies ({} > {})".format(
config.kind,
task["label"],
len(task["dependencies"]),
MAX_DEPENDENCIES,
)
) yield task
@transforms.add def check_perf_task_fission_filtering(config, tasks): for task in tasks: if (
("chrome-m"in task["label"] or"cstm-car-m"in task["label"]) and"nofis"notin task["label"] and"android"in task["label"] and"startup"notin task["label"]
): continue yield task
def check_caches_are_volumes(task): """Ensures that all cache paths are defined as volumes.
Caches and volumes are the only filesystem locations whose content
isn't defined by the Docker image itself. Some caches are optional
depending on the job environment. We want paths that are potentially
caches to have as similar behavior regardless of whether a cache is
used. To help enforce this, we require that all paths used as caches
to be declared as Docker volumes. This check won't catch all offenders.
But it is better than nothing. """
volumes = {s for s in task["worker"]["volumes"]}
paths = {c["mount-point"] for c in task["worker"].get("caches", [])}
missing = paths - volumes
ifnot missing: return
raise Exception( "task %s (image %s) has caches that are not declared as " "Docker volumes: %s " "(have you added them as VOLUMEs in the Dockerfile?)"
% (task["label"], task["worker"]["docker-image"], ", ".join(sorted(missing)))
)
def check_required_volumes(task): """
Ensures that all paths that are required to be volumes are defined as volumes.
Performance of writing to files in poor in directories not marked as
volumes, in docker. Ensure that paths that are often written to are marked as volumes. """
volumes = set(task["worker"]["volumes"])
paths = set(task["worker"].get("required-volumes", []))
missing = paths - volumes
ifnot missing: return
raise Exception( "task %s (image %s) has paths that should be volumes for peformance " "that are not declared as Docker volumes: %s " "(have you added them as VOLUMEs in the Dockerfile?)"
% (task["label"], task["worker"]["docker-image"], ", ".join(sorted(missing)))
)
@transforms.add def check_run_task_caches(config, tasks): """Audit for caches requiring run-task.
run-task manages caches in certain ways. If a cache managed by run-task is used by a non run-task task, it could cause problems. So we audit for
that and make sure certain cache names are exclusive to run-task.
IF YOU ARE TEMPTED TO MAKE EXCLUSIONS TO THIS POLICY, YOU ARE LIKELY
CONTRIBUTING TECHNICAL DEBT AND WILL HAVE TO SOLVE MANY OF THE PROBLEMS
THAT RUN-TASK ALREADY SOLVES. THINK LONG AND HARD BEFORE DOING THAT. """
re_reserved_caches = re.compile( """^
(checkouts|tooltool-cache) """,
re.VERBOSE,
)
if run_task: for arg in command[1:]: ifnot isinstance(arg, str): continue
if arg == "--": break
if arg.startswith("--gecko-sparse-profile"): if"="notin arg: raise Exception( "{} is specifying `--gecko-sparse-profile` to run-task " "as two arguments. Unable to determine if the sparse " "profile exists.".format(task["label"])
)
_, sparse_profile = arg.split("=", 1) ifnot os.path.exists(os.path.join(GECKO, sparse_profile)): raise Exception( "{} is using non-existant sparse profile {}.".format(
task["label"], sparse_profile
)
)
require_sparse_cache = True break
if arg == "--gecko-shallow-clone":
require_shallow_cache = True break
for cache in payload.get("cache", {}): ifnot cache.startswith(cache_prefix): raise Exception( "{} is using a cache ({}) which is not appropriate " "for its trust-domain and level. It should start with {}.".format(
task["label"], cache, cache_prefix
)
)
cache = cache[len(cache_prefix) :]
if re_checkout_cache.match(cache):
have_checkout_cache = True
if re_sparse_checkout_cache.match(cache):
have_sparse_cache = True
if re_shallow_checkout_cache.match(cache):
have_shallow_cache = True
ifnot re_reserved_caches.match(cache): continue
ifnot run_task: raise Exception( "%s is using a cache (%s) reserved for run-task " "change the task to use run-task or use a different " "cache name" % (task["label"], cache)
)
ifnot cache.endswith(suffix): raise Exception( "%s is using a cache (%s) reserved for run-task " "but the cache name is not dependent on the contents " "of run-task; change the cache name to conform to the " "naming requirements" % (task["label"], cache)
)
if have_checkout_cache and require_sparse_cache andnot have_sparse_cache: raise Exception( "%s is using a sparse checkout but not using " "a sparse checkout cache; change the checkout " "cache name so it is sparse aware" % task["label"]
)
if have_checkout_cache and require_shallow_cache andnot have_shallow_cache: raise Exception( "%s is using a shallow clone but not using " "a shallow checkout cache; change the checkout " "cache name so it is shallow aware" % task["label"]
)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.