diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /taskcluster/taskgraph/action.yml | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'taskcluster/taskgraph/action.yml')
-rw-r--r-- | taskcluster/taskgraph/action.yml | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/taskcluster/taskgraph/action.yml b/taskcluster/taskgraph/action.yml new file mode 100644 index 000000000..c816f4d5c --- /dev/null +++ b/taskcluster/taskgraph/action.yml @@ -0,0 +1,74 @@ +--- +created: '{{now}}' +deadline: '{{#from_now}}1 day{{/from_now}}' +expires: '{{#from_now}}14 day{{/from_now}}' +metadata: + owner: mozilla-taskcluster-maintenance@mozilla.com + source: 'https://hg.mozilla.org/{{project}}/file/{{head_rev}}/taskcluster/taskgraph/action.yml' + name: "[tc] Action Task" + description: Helps schedule new jobs without new push + +workerType: "gecko-decision" +provisionerId: "aws-provisioner-v1" +schedulerId: "gecko-level-{{level}}" + +tags: + createdForUser: {{owner}} + +scopes: + # Bug 1269443: cache scopes, etc. must be listed explicitly + - "docker-worker:cache:level-1-*" + - "docker-worker:cache:tooltool-cache" + - "secrets:get:project/taskcluster/gecko/hgfingerprint" + - "assume:repo:hg.mozilla.org/try:*" + +routes: + - "tc-treeherder.v2.{{project}}.{{head_rev}}.{{pushlog_id}}" + - "tc-treeherder-stage.v2.{{project}}.{{head_rev}}.{{pushlog_id}}" + +payload: + env: + GECKO_BASE_REPOSITORY: 'https://hg.mozilla.org/mozilla-unified' + GECKO_HEAD_REPOSITORY: '{{{head_repository}}}' + GECKO_HEAD_REF: '{{head_ref}}' + GECKO_HEAD_REV: '{{head_rev}}' + HG_STORE_PATH: /home/worker/checkouts/hg-store + + cache: + level-{{level}}-checkouts: /home/worker/checkouts + + features: + taskclusterProxy: true + + # Note: This task is built server side without the context or tooling that + # exist in tree so we must hard code the version + image: 'taskcluster/decision:0.1.7' + + # Virtually no network or other potentially risky operations happen as part + # of the task timeout aside from the initial clone. We intentionally have + # set this to a lower value _all_ decision tasks should use a root + # repository which is cached. + maxRunTime: 1800 + + command: + - /home/worker/bin/run-task + - '--vcs-checkout=/home/worker/checkouts/gecko' + - '--' + - bash + - -cx + - > + cd /home/worker/checkouts/gecko && + ln -s /home/worker/artifacts artifacts && + ./mach --log-no-times taskgraph action-task + --decision-id='{{decision_task_id}}' + --task-label='{{task_labels}}' + + artifacts: + 'public': + type: 'directory' + path: '/home/worker/artifacts' + expires: '{{#from_now}}7 days{{/from_now}}' + +extra: + treeherder: + symbol: A |