taskcluster/glean_taskgraph/transforms/__init__.py (23 lines of code) (raw):

# 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/. from ..build_config import EXTENSIONS def _extensions(type, secondary_extensions): primary_extensions = EXTENSIONS[type] return [package_ext + secondary_ext for package_ext in primary_extensions for secondary_ext in secondary_extensions] def _artifact_filename(name, version, extension): return f"{name}-{version}{extension}" def publications_to_artifact_paths(name, version, publications, secondary_extensions=("",)): paths = [] for publication in publications: for extension in _extensions(publication["type"], secondary_extensions): artifact_filename = _artifact_filename(publication['name'], version, extension) paths.append(f"public/build/{artifact_filename}") return paths def publications_to_artifact_map_paths(name, version, publications, secondary_extensions): build_map_paths = {} for publication in publications: for extension in _extensions(publication["type"], secondary_extensions): artifact_filename = _artifact_filename(publication['name'], version, extension) build_map_paths[f"public/build/{artifact_filename}"] = { "checksums_path": "", # TODO beetmover marks this as required, but it's not needed "destinations": ["maven2/org/mozilla/telemetry/{}/{}/{}".format(publication['name'], version, artifact_filename)] } return build_map_paths