diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /security/nss/.taskcluster.yml | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/nss/.taskcluster.yml')
-rw-r--r-- | security/nss/.taskcluster.yml | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/security/nss/.taskcluster.yml b/security/nss/.taskcluster.yml new file mode 100644 index 0000000000..0edf685814 --- /dev/null +++ b/security/nss/.taskcluster.yml @@ -0,0 +1,85 @@ +# This file is rendered via JSON-e in a hook with context: +# { +# tasks_for: 'hg-push', +# push: {owner, pushlog_id, pushdate}, +# repository: {url, project, level}, +# now, +# ownTaskId: // taskId of the task that will be created +# } +--- +version: 1 +tasks: + - $let: + # sometimes the push user is just `ffxbld` or the like, but we want an + # email-like field.. + ownerEmail: + $if: '"@" in push.owner' + then: '${push.owner}' + else: '${push.owner}@noreply.mozilla.org' + # ensure there's no trailing `/` on the repo URL + repoUrl: + $if: 'repository.url[-1] == "/"' + then: {$eval: 'repository.url[:-1]'} + else: {$eval: 'repository.url'} + # scheduler id + schedulerId: 'nss-level-${repository.level}' + in: + taskId: '${ownTaskId}' + taskGroupId: '${ownTaskId}' + schedulerId: '${schedulerId}' + created: {$fromNow: ''} + deadline: {$fromNow: '1 day'} + expires: {$fromNow: '14 days'} + + metadata: + owner: mozilla-taskcluster-maintenance@mozilla.com + source: "${repository.url}" + name: "NSS Decision Task" + description: | + The task that creates all of the other tasks in the task graph + + workerType: "linux-gcp" + provisionerId: "nss-${repository.level}" + + scopes: + - 'assume:repo:${repoUrl[8:]}:branch:default' + tags: + createdForUser: "${ownerEmail}" + + routes: + - "tc-treeherder-stage.v2.${repository.project}.${push.revision}.${push.pushlog_id}" + - "tc-treeherder.v2.${repository.project}.${push.revision}.${push.pushlog_id}" + + payload: + # TODO: use nssdev org , not djmitche, once the image is pushed there + image: djmitche/nss-decision:0.0.3 + + env: + TC_OWNER: "${ownerEmail}" + TC_SOURCE: "${repository.url}" + TC_PROJECT: ${repository.project} + TC_SCHEDULER_ID: "${schedulerId}" + MOZ_SCM_LEVEL: "${repository.level}" + NSS_PUSHLOG_ID: '${push.pushlog_id}' + NSS_HEAD_REPOSITORY: '${repository.url}' + NSS_HEAD_REVISION: '${push.revision}' + + maxRunTime: 1800 + + command: + - bash + - -cx + - > + bin/checkout.sh && + nss/automation/taskcluster/scripts/extend_task_graph.sh + + features: + taskclusterProxy: true + + extra: + treeherder: + symbol: D + build: + platform: nss-decision + machine: + platform: nss-decision |