mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-05 21:20:45 +00:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# 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 __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
import time
|
|
|
|
from taskgraph.transforms.task import index_builder
|
|
|
|
SIGNING_ROUTE_TEMPLATES = [
|
|
"index.project.{trust-domain}.{project}.v3.{variant}.{build_date}.revision.{head_rev}",
|
|
"index.project.{trust-domain}.{project}.v3.{variant}.{build_date}.latest",
|
|
"index.project.{trust-domain}.{project}.v3.{variant}.latest",
|
|
]
|
|
|
|
|
|
@index_builder("signing")
|
|
def add_signing_indexes(config, task):
|
|
routes = task.setdefault("routes", [])
|
|
|
|
if config.params["level"] != "3":
|
|
return task
|
|
|
|
subs = config.params.copy()
|
|
subs["build_date"] = time.strftime(
|
|
"%Y.%m.%d", time.gmtime(config.params["build_date"])
|
|
)
|
|
subs["trust-domain"] = config.graph_config["trust-domain"]
|
|
subs["variant"] = task["attributes"]["build-type"]
|
|
|
|
for tpl in SIGNING_ROUTE_TEMPLATES:
|
|
routes.append(tpl.format(**subs))
|
|
return task
|