bug 1442793 - repackage_signing artifact_prefix. r=bhearsum

MozReview-Commit-ID: 10aQShA2xZJ

--HG--
extra : rebase_source : bb491998735fcfb8ce37605b3be9a88673d7d415
This commit is contained in:
Aki Sasaki 2018-03-07 12:51:02 -08:00
parent b82a129bd2
commit 6a1a7f74a1

View File

@ -15,6 +15,7 @@ from taskgraph.util.scriptworker import (
get_signing_cert_scope_per_platform,
get_worker_type_for_scope,
)
from taskgraph.util.taskcluster import get_artifact_path
from taskgraph.transforms.task import task_description_schema
from voluptuous import Required, Optional
@ -96,7 +97,7 @@ def make_repackage_signing_description(config, jobs):
"taskId": {"task-reference": "<repackage>"},
"taskType": "repackage",
"paths": [
"public/build/{}target.complete.mar".format(locale_str),
get_artifact_path(dep_job, "{}target.complete.mar".format(locale_str)),
],
"formats": ["mar_sha384"]
}]
@ -105,7 +106,7 @@ def make_repackage_signing_description(config, jobs):
"taskId": {"task-reference": "<repackage>"},
"taskType": "repackage",
"paths": [
"public/build/{}target.installer.exe".format(locale_str),
get_artifact_path(dep_job, "{}target.installer.exe".format(locale_str)),
],
"formats": ["sha2signcode"]
})
@ -117,7 +118,9 @@ def make_repackage_signing_description(config, jobs):
"taskId": {"task-reference": "<repackage>"},
"taskType": "repackage",
"paths": [
"public/build/{}target.stub-installer.exe".format(locale_str),
get_artifact_path(
dep_job, "{}target.stub-installer.exe".format(locale_str)
),
],
"formats": ["sha2signcodestub"]
})