# 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 import shutil import sys import time from collections import defaultdict from pathlib import Path
import taskgraph import yaml from redo import retry from taskgraph import create from taskgraph.create import create_tasks from taskgraph.generator import TaskGraphGenerator from taskgraph.main import format_kind_graph_mermaid from taskgraph.parameters import Parameters from taskgraph.taskgraph import TaskGraph from taskgraph.util import json from taskgraph.util.python_path import find_object from taskgraph.util.taskcluster import get_artifact from taskgraph.util.vcs import get_repository from taskgraph.util.yaml import load_yaml
from . import GECKO from .actions import render_actions_json from .files_changed import get_changed_files from .parameters import get_app_version, get_version from .util.backstop import ANDROID_PERFTEST_BACKSTOP_INDEX, BACKSTOP_INDEX, is_backstop from .util.bugbug import push_schedules from .util.hg import get_hg_revision_branch, get_hg_revision_info from .util.partials import populate_release_history from .util.taskcluster import insert_index from .util.taskgraph import find_decision_task, find_existing_tasks_from_previous_kinds
for i in ("groupName", "groupSymbol", "collection"): if i in th:
runnable_jobs[label][i] = th[i] if th.get("machine", {}).get("platform"):
runnable_jobs[label]["platform"] = th["machine"]["platform"] return runnable_jobs
def full_task_graph_to_manifests_by_task(full_task_json):
manifests_by_task = defaultdict(list) for label, node in full_task_json.items():
manifests = node["attributes"].get("test_manifests") ifnot manifests: continue
def taskgraph_decision(options, parameters): """
Run the decision task. This function implements `mach taskgraph decision`, andis responsible for
* running task-graph generation exactly the same way the other `mach
taskgraph` commands do
* generating a set of artifacts to memorialize the graph
* calling TaskCluster APIs to create the graph
The ``parameters`` argument must be a pre-resolved ``Parameters`` object. """
ifnot create.testing: # set additional index paths for the decision task
set_decision_indexes(decision_task_id, tgg.parameters, tgg.graph_config)
# write out the parameters used to generate this graph
write_artifact("parameters.yml", dict(**tgg.parameters))
# write out the public/actions.json file
write_artifact( "actions.json",
render_actions_json(tgg.parameters, tgg.graph_config, decision_task_id),
)
# write out the full graph for reference
full_task_json = tgg.full_task_graph.to_json()
write_artifact("full-task-graph.json", full_task_json)
# write out kind graph
write_artifact("kind-graph.mm", format_kind_graph_mermaid(tgg.kind_graph))
# write out the public/runnable-jobs.json file
write_artifact( "runnable-jobs.json", full_task_graph_to_runnable_jobs(full_task_json)
)
# write out the public/manifests-by-task.json file
write_artifact( "manifests-by-task.json.gz",
full_task_graph_to_manifests_by_task(full_task_json),
)
# `tests-by-manifest.json.gz` was previously written out here # it was moved to `loader/test.py` because its contents now depend on # data generated in a subprocess which we do not have access to here # see https://bugzilla.mozilla.org/show_bug.cgi?id=1989038 for additional # details
# this is just a test to check whether the from_json() function is working
_, _ = TaskGraph.from_json(full_task_json)
# write out the target task set to allow reproducing this as input
write_artifact("target-tasks.json", list(tgg.target_task_set.tasks.keys()))
# write out the optimized task graph to describe what will actually happen, # and the map of labels to taskids
write_artifact("task-graph.json", tgg.morphed_task_graph.to_json())
write_artifact("label-to-taskid.json", tgg.label_to_taskid)
# write bugbug scheduling information if it was invoked if push_schedules.cache_info().currsize > 0:
write_artifact( "bugbug-push-schedules.json",
push_schedules(tgg.parameters["project"], tgg.parameters["head_rev"]),
)
def get_decision_parameters(graph_config, options): """
Load parameters from the command-line options for'taskgraph decision'.
This also applies per-project parameters, based on the given project.
"""
product_dir = graph_config["product-dir"]
parameters = {
n: options[n] for n in [ "base_repository", "base_ref", "base_rev", "head_repository", "head_rev", "head_ref", "head_tag", "project", "pushlog_id", "pushdate", "owner", "level", "repository_type", "target_tasks_method", "tasks_for",
] if n in options
}
# Set some vcs specific parameters if parameters["repository_type"] == "hg": if head_git_rev := get_hg_revision_info(
GECKO, revision=parameters["head_rev"], info="extras.git_commit"
):
parameters["head_git_rev"] = head_git_rev
# owner must be an email, but sometimes (e.g., for ffxbld) it is not, in which # case, fake it if"@"notin parameters["owner"]:
parameters["owner"] += "@noreply.mozilla.org"
# use the pushdate as build_date if given, else use current time
parameters["build_date"] = parameters["pushdate"] or int(time.time()) # moz_build_date is the build identifier based on build_date
parameters["moz_build_date"] = time.strftime( "%Y%m%d%H%M%S", time.gmtime(parameters["build_date"])
)
project = parameters["project"] try:
parameters.update(PER_PROJECT_PARAMETERS[project]) except KeyError:
logger.warning(
f"using default project parameters; add {project} to "
f"PER_PROJECT_PARAMETERS in {__file__} to customize behavior " "for this project"
)
parameters.update(PER_PROJECT_PARAMETERS["default"])
if parameters.get("tasks_for", "").startswith("github-pull-request"):
parameters["optimize_strategies"] = ( "gecko_taskgraph.optimize:project.pull_request"
)
# `target_tasks_method` has higher precedence than `project` parameters if options.get("target_tasks_method"):
parameters["target_tasks_method"] = options["target_tasks_method"]
if options.get("include_push_tasks"):
get_existing_tasks(options.get("rebuild_kinds", []), parameters, graph_config)
# If the target method is nightly, we should build partials. This means # knowing what has been released previously. # An empty release_history is fine, it just means no partials will be built
parameters.setdefault("release_history", dict()) if"nightly"in parameters.get("target_tasks_method", ""):
parameters["release_history"] = populate_release_history("Firefox", project)
if options.get("optimize_target_tasks") isnotNone:
parameters["optimize_target_tasks"] = options["optimize_target_tasks"]
# If the commit message contains "DONTBUILD" and this is an on-push # decision task, mark it so the morph phase can drop all tasks and so # that is_backstop knows not to count this push as a backstop.
parameters["dontbuild"] = ( "DONTBUILD"in commit_message and options["tasks_for"] == "hg-push"
)
# Determine if this should be a backstop push.
parameters["backstop"] = is_backstop(parameters)
# For the android perf tasks, run them 50% less often
parameters["android_perftest_backstop"] = is_backstop(
parameters,
push_interval=30,
time_interval=60 * 6,
backstop_strategy="android_perftest_backstop",
)
# load extra parameters from file or note if able if options.get("allow_parameter_override"):
note_ref = "refs/notes/decision-parameters" if options.get("try_task_config_file"):
task_config_file = os.path.abspath(options.get("try_task_config_file")) else:
task_config_file = os.path.join(os.getcwd(), "try_task_config.json")
if os.path.isfile(task_config_file):
set_try_config(parameters, task_config_file)
parameters["try_mode"] = "try_task_config"
elif note_params := repo.get_note(note_ref, parameters["head_repository"]): try:
note_params = json.loads(note_params)
logger.info(
f"Overriding parameters from {note_ref}:\n{json.dumps(note_params, indent=2)}"
)
parameters.update(note_params)
parameters["try_mode"] = "try_task_config" except ValueError as e: raise Exception(f"Failed to parse {note_ref} as JSON: {e}") from e
result = Parameters(**parameters)
result.check() return result
def get_existing_tasks(rebuild_kinds, parameters, graph_config): """
Find the decision task corresponding to the on-push graph, andreturn
a mapping of labels to task-ids from it. This will skip the kinds specificed
by `rebuild_kinds`. """ try:
decision_task = retry(
find_decision_task,
args=(parameters, graph_config),
attempts=4,
sleeptime=5 * 60,
) except Exception:
logger.exception("Didn't find existing push task.")
sys.exit(1)
_, task_graph = TaskGraph.from_json(
get_artifact(decision_task, "public/full-task-graph.json")
)
parameters["existing_tasks"] = find_existing_tasks_from_previous_kinds(
task_graph, [decision_task], rebuild_kinds
)
def set_try_config(parameters, task_config_file):
logger.info(f"using try tasks from {task_config_file}") with open(task_config_file) as fh:
task_config = json.load(fh)
task_config_version = task_config.pop("version", 1) if task_config_version == 1:
parameters["try_task_config"] = task_config elif task_config_version == 2:
parameters.update(task_config["parameters"]) else: raise Exception(
f"Unknown `try_task_config.json` version: {task_config_version}"
)
def set_decision_indexes(decision_task_id, params, graph_config):
index_paths = [] if params["android_perftest_backstop"]:
index_paths.insert(0, ANDROID_PERFTEST_BACKSTOP_INDEX) if params["backstop"]: # When two Decision tasks run at nearly the same time, it's possible # they both end up being backstops if the second checks the backstop # index before the first inserts it. Insert this index first to reduce # the chances of that happening.
index_paths.insert(0, BACKSTOP_INDEX)
for index_path in index_paths:
insert_index(index_path.format(**subs), decision_task_id)
def write_artifact(filename, data):
logger.info(f"writing artifact file `{filename}`") ifnot os.path.isdir(ARTIFACTS_DIR):
os.mkdir(ARTIFACTS_DIR)
path = os.path.join(ARTIFACTS_DIR, filename) if filename.endswith(".yml"): with open(path, "w") as f:
yaml.safe_dump(data, f, allow_unicode=True, default_flow_style=False) elif filename.endswith(".json"): with open(path, "w") as f:
json.dump(data, f) elif filename.endswith(".json.gz"): import gzip
with gzip.open(path, "wb") as f:
f.write(json.dumps(data).encode("utf-8")) else: with open(path, "w") as f:
f.write(data)
def read_artifact(filename):
path = os.path.join(ARTIFACTS_DIR, filename) if filename.endswith(".yml"): return load_yaml(path, filename) if filename.endswith(".json"): with open(path) as f: return json.load(f) if filename.endswith(".json.gz"): import gzip
with gzip.open(path, "rb") as f: return json.load(f) else: raise TypeError(f"Don't know how to read {filename}")
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.