icecat: add release icecat-140.6.0-1gnu1 for ecne
This commit is contained in:
parent
618c9f4145
commit
7d0f5dab3b
3382 changed files with 457689 additions and 569094 deletions
|
|
@ -30,9 +30,6 @@ beetmover_push_to_release_description_schema = Schema(
|
|||
Required("shipping-phase"): task_description_schema["shipping-phase"],
|
||||
Required("shipping-product"): task_description_schema["shipping-product"],
|
||||
Optional("extra"): task_description_schema["extra"],
|
||||
Optional("worker"): {
|
||||
Optional("max-run-time"): int,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
|
@ -85,8 +82,6 @@ def make_beetmover_push_to_release_worker(config, jobs):
|
|||
"implementation": "beetmover-push-to-release",
|
||||
"product": job["product"],
|
||||
}
|
||||
if job.get("worker", {}).get("max-run-time"):
|
||||
worker["max-run-time"] = job["worker"]["max-run-time"]
|
||||
job["worker"] = worker
|
||||
del job["product"]
|
||||
|
||||
|
|
|
|||
|
|
@ -129,7 +129,6 @@ def make_task_description(config, jobs):
|
|||
"worker": {
|
||||
"implementation": "scriptworker-signing",
|
||||
"upstream-artifacts": upstream_artifacts,
|
||||
"max-run-time": 3600,
|
||||
},
|
||||
"dependencies": dependencies,
|
||||
"attributes": attributes,
|
||||
|
|
|
|||
|
|
@ -72,7 +72,6 @@ def make_signing_description(config, jobs):
|
|||
worker_type = "linux-signing"
|
||||
worker = {
|
||||
"implementation": "scriptworker-signing",
|
||||
"max-run-time": 3600,
|
||||
}
|
||||
rev = attributes["openh264_rev"]
|
||||
upstream_artifact = {
|
||||
|
|
|
|||
|
|
@ -88,7 +88,6 @@ def make_release_generate_checksums_signing_description(config, jobs):
|
|||
"worker": {
|
||||
"implementation": "scriptworker-signing",
|
||||
"upstream-artifacts": upstream_artifacts,
|
||||
"max-run-time": 3600,
|
||||
},
|
||||
"scopes": [
|
||||
signing_cert_scope,
|
||||
|
|
|
|||
|
|
@ -140,7 +140,6 @@ def make_repackage_signing_description(config, jobs):
|
|||
"worker": {
|
||||
"implementation": "scriptworker-signing",
|
||||
"upstream-artifacts": upstream_artifacts,
|
||||
"max-run-time": 3600,
|
||||
},
|
||||
"scopes": scopes,
|
||||
"dependencies": dependencies,
|
||||
|
|
|
|||
|
|
@ -152,7 +152,6 @@ def make_repackage_signing_description(config, jobs):
|
|||
"worker": {
|
||||
"implementation": "scriptworker-signing",
|
||||
"upstream-artifacts": upstream_artifacts,
|
||||
"max-run-time": 3600,
|
||||
},
|
||||
"scopes": scopes,
|
||||
"dependencies": dependencies,
|
||||
|
|
|
|||
|
|
@ -49,8 +49,6 @@ signing_description_schema = Schema(
|
|||
Optional("shipping-phase"): task_description_schema["shipping-phase"],
|
||||
Optional("shipping-product"): task_description_schema["shipping-product"],
|
||||
Required("dependencies"): task_description_schema["dependencies"],
|
||||
# Optional control for how long a task may run (aka maxRunTime)
|
||||
Optional("max-run-time"): int,
|
||||
Optional("extra"): {str: object},
|
||||
# Max number of partner repacks per chunk
|
||||
Optional("repacks-per-chunk"): int,
|
||||
|
|
@ -182,7 +180,6 @@ def make_task_description(config, jobs):
|
|||
"worker": {
|
||||
"implementation": "scriptworker-signing",
|
||||
"upstream-artifacts": job["upstream-artifacts"],
|
||||
"max-run-time": job.get("max-run-time", 3600),
|
||||
},
|
||||
"scopes": [signing_cert_scope] + signing_format_scopes,
|
||||
"dependencies": job["dependencies"],
|
||||
|
|
|
|||
|
|
@ -86,7 +86,6 @@ def make_checksums_signing_description(config, jobs):
|
|||
"worker": {
|
||||
"implementation": "scriptworker-signing",
|
||||
"upstream-artifacts": upstream_artifacts,
|
||||
"max-run-time": 3600,
|
||||
},
|
||||
"scopes": [
|
||||
signing_cert_scope,
|
||||
|
|
|
|||
|
|
@ -838,7 +838,7 @@ def build_generic_worker_payload(config, task, task_def):
|
|||
"scriptworker-signing",
|
||||
schema={
|
||||
# the maximum time to run, in seconds
|
||||
Required("max-run-time"): int,
|
||||
Optional("max-run-time"): int,
|
||||
# list of artifact URLs for the artifacts that should be signed
|
||||
Required("upstream-artifacts"): [
|
||||
{
|
||||
|
|
@ -888,7 +888,6 @@ def build_scriptworker_signing_payload(config, task, task_def):
|
|||
worker = task["worker"]
|
||||
|
||||
task_def["payload"] = {
|
||||
"maxRunTime": worker["max-run-time"],
|
||||
"upstreamArtifacts": worker["upstream-artifacts"],
|
||||
}
|
||||
if worker.get("mac-behavior"):
|
||||
|
|
@ -919,7 +918,7 @@ def build_scriptworker_signing_payload(config, task, task_def):
|
|||
"beetmover",
|
||||
schema={
|
||||
# the maximum time to run, in seconds
|
||||
Required("max-run-time"): int,
|
||||
Optional("max-run-time"): int,
|
||||
# locale key, if this is a locale beetmover job
|
||||
Optional("locale"): str,
|
||||
Required("release-properties"): {
|
||||
|
|
@ -952,7 +951,6 @@ def build_beetmover_payload(config, task, task_def):
|
|||
release_properties = worker["release-properties"]
|
||||
|
||||
task_def["payload"] = {
|
||||
"maxRunTime": worker["max-run-time"],
|
||||
"releaseProperties": {
|
||||
"appName": release_properties["app-name"],
|
||||
"appVersion": release_properties["app-version"],
|
||||
|
|
@ -976,7 +974,7 @@ def build_beetmover_payload(config, task, task_def):
|
|||
"beetmover-push-to-release",
|
||||
schema={
|
||||
# the maximum time to run, in seconds
|
||||
Required("max-run-time"): int,
|
||||
Optional("max-run-time"): int,
|
||||
Required("product"): str,
|
||||
},
|
||||
)
|
||||
|
|
@ -986,7 +984,6 @@ def build_beetmover_push_to_release_payload(config, task, task_def):
|
|||
partners = [f"{p}/{s}" for p, s, _ in get_partners_to_be_published(config)]
|
||||
|
||||
task_def["payload"] = {
|
||||
"maxRunTime": worker["max-run-time"],
|
||||
"product": worker["product"],
|
||||
"version": release_config["version"],
|
||||
"build_number": release_config["build_number"],
|
||||
|
|
@ -997,7 +994,7 @@ def build_beetmover_push_to_release_payload(config, task, task_def):
|
|||
@payload_builder(
|
||||
"beetmover-import-from-gcs-to-artifact-registry",
|
||||
schema={
|
||||
Required("max-run-time"): int,
|
||||
Optional("max-run-time"): int,
|
||||
Required("gcs-sources"): [str],
|
||||
Required("product"): str,
|
||||
},
|
||||
|
|
@ -1012,7 +1009,7 @@ def build_import_from_gcs_to_artifact_registry_payload(config, task, task_def):
|
|||
@payload_builder(
|
||||
"beetmover-maven",
|
||||
schema={
|
||||
Required("max-run-time"): int,
|
||||
Optional("max-run-time"): int,
|
||||
Required("release-properties"): {
|
||||
"app-name": str,
|
||||
"app-version": str,
|
||||
|
|
@ -1808,14 +1805,6 @@ def set_defaults(config, tasks):
|
|||
"Windows and Linux, not on {}".format(worker["os"])
|
||||
)
|
||||
worker.setdefault("chain-of-trust", False)
|
||||
elif worker["implementation"] in (
|
||||
"scriptworker-signing",
|
||||
"beetmover",
|
||||
"beetmover-push-to-release",
|
||||
"beetmover-maven",
|
||||
"beetmover-import-from-gcs-to-artifact-registry",
|
||||
):
|
||||
worker.setdefault("max-run-time", 600)
|
||||
elif worker["implementation"] == "push-apk":
|
||||
worker.setdefault("commit", False)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue